Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 763d8cba authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

fix: app details page not opening for apps in open source mode

parent bab2657a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ class ApplicationViewModel @Inject constructor(
         * If user is viewing only open source apps, auth object list will not have
         * GPlayAuth, it will only have CleanApkAuth.
         */
        if (gPlayObj == null && (params.source == Source.OPEN_SOURCE || params.source == Source.PWA)) {
        if (gPlayObj == null && params.source == Source.PLAY_STORE) {
            _errorMessageLiveData.postValue(R.string.gplay_data_for_oss)
            return
        }