Skip to content

Commit

Permalink
Remove accidental changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmshrv committed Jul 11, 2021
1 parent 0cf027f commit e116810
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion lib/components/AlbumImage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class AlbumImage extends StatelessWidget {
),
),
);
} else if (!kDebugMode) {
} else if (kDebugMode) {
// If Flutter encounters an error, such as a 404, when getting an image, it will throw an exception.
// This is super annoying while debugging since every blank album stops the whole app.
// Because of this, I don't load images while the app is in debug mode.
Expand Down
1 change: 0 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ class Finamp extends StatelessWidget {
}
},
child: MaterialApp(
debugShowCheckedModeBanner: false,
title: "Finamp",
routes: {
"/": (context) => SplashScreen(),
Expand Down

0 comments on commit e116810

Please sign in to comment.