Skip to content

Commit

Permalink
fixed issue with Favorites Page
Browse files Browse the repository at this point in the history
  • Loading branch information
aldrinzigmundv committed Sep 12, 2023
1 parent 949de7b commit c0113d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ void main() => runApp(
title: "Digilog TV",
initialRoute: '/',
routes: {
'/': (context) => LoadingPage(),
'/': (context) => const LoadingPage(),
},
));
2 changes: 1 addition & 1 deletion lib/pages/home pages/favoritespage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class _FavoritesPageState extends State<FavoritesPage> {
}

goToChannel(int index) {
if (storage.channels.channelList[index].source == Source.iptv) {
if (storage.arrangedChannelList[index].source == Source.iptv) {
Navigator.push(
context,
MaterialPageRoute(
Expand Down
1 change: 1 addition & 0 deletions metadata/en-US/changelogs/1.6.0.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c0113d2

Please sign in to comment.