Skip to content

Commit

Permalink
Fix android telephony provider path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas FitzRoy-Dale committed Jun 22, 2024
1 parent 1886e05 commit df02d0e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rime/providers/androidtelephony.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"""
import datetime
from dataclasses import dataclass
import os.path

from ..provider import Provider
from .providerutils import LazyContactProvider, LazyContactProviderContacts
Expand All @@ -31,7 +30,7 @@ class AndroidTelephony(Provider, LazyContactProvider):
NAME = ANDROID_TELEPHONY
FRIENDLY_NAME = ANDROID_TELEPHONY_FRIENDLY

MMSSMS_DB = os.path.join('data', 'data', 'com.android.providers.telephony', 'databases', 'mmssms.db')
MMSSMS_DB = 'data/data/com.android.providers.telephony/databases/mmssms.db'

def __init__(self, fs):
self.fs = fs
Expand Down

0 comments on commit df02d0e

Please sign in to comment.