diff --git a/android/app/build.gradle b/android/app/build.gradle index 54bdd1e..035d96c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -58,7 +58,7 @@ android { // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. minSdkVersion 20 targetSdkVersion 33 - versionCode 3 + versionCode 4 versionName "1.6.0" multiDexEnabled true } diff --git a/lib/main.dart b/lib/main.dart index ecd8fee..b5c8bf2 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -7,6 +7,6 @@ void main() => runApp( title: "Digilog TV", initialRoute: '/', routes: { - '/': (context) => LoadingPage(), + '/': (context) => const LoadingPage(), }, )); \ No newline at end of file diff --git a/lib/pages/home pages/favoritespage.dart b/lib/pages/home pages/favoritespage.dart index 70883a1..4c22b41 100644 --- a/lib/pages/home pages/favoritespage.dart +++ b/lib/pages/home pages/favoritespage.dart @@ -35,7 +35,7 @@ class _FavoritesPageState extends State { } goToChannel(int index) { - if (storage.channels.channelList[index].source == Source.iptv) { + if (storage.arrangedChannelList[index].source == Source.iptv) { Navigator.push( context, MaterialPageRoute( diff --git a/metadata/en-US/changelogs/1.6.0.txt b/metadata/en-US/changelogs/1.6.0.txt index 7f6be83..0328fba 100644 --- a/metadata/en-US/changelogs/1.6.0.txt +++ b/metadata/en-US/changelogs/1.6.0.txt @@ -1,3 +1,4 @@ * Resolved issue with screen turning off during video playback +* Resolved issue with certain channels not working correctly when selected from the Favorites Page * Added TV news channels' websites to comply with Google Play requirements * Improved UI Design \ No newline at end of file