Skip to content

Commit

Permalink
🐛 Fix: updated placeholder url
Browse files Browse the repository at this point in the history
  • Loading branch information
devaryakjha committed Oct 23, 2023
1 parent b8a3b63 commit e64f785
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/utils/configs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ Config get appConfig {
const server = kReleaseMode
? Server('https://saavn.aryak.dev')
: Server('https://saavn.aryak.dev');
return Config(
return const Config(
env: kReleaseMode ? 'production' : 'development',
endpoint: const Endpoint(
endpoint: Endpoint(
modules: '/modules',
playlists: Playlists(id: 'playlists'),
albums: Albums(link: 'albums'),
Expand All @@ -131,6 +131,6 @@ Config get appConfig {
),
),
server: server,
placeholderImageLink: '${server.baseUrl}/audio.jpg',
placeholderImageLink: 'http://192.168.31.130:3000/audio.jpg',
);
}

0 comments on commit e64f785

Please sign in to comment.