fix typo in playstore detection
This commit is contained in:
parent
4a965b991f
commit
3bb696a5d6
1 changed files with 1 additions and 1 deletions
|
@ -4291,7 +4291,7 @@ public class XmppConnectionService extends Service {
|
|||
final String packageID = BuildConfig.APPLICATION_ID;
|
||||
final String installedFrom = packageManager.getInstallerPackageName(packageID);
|
||||
Log.d(Config.LOGTAG, "Messenger installed from " + installedFrom);
|
||||
return installedFrom != null && installedFrom.contains("com.android.venedig");
|
||||
return installedFrom != null && installedFrom.contains("com.android.vending");
|
||||
}
|
||||
|
||||
public ShortcutService getShortcutService() {
|
||||
|
|
Reference in a new issue