Skip to content

Commit 3fd19ce

Browse files
committed
fix: update log message for timeout in getSong function
1 parent 0767ad3 commit 3fd19ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/API/musify.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ Future<String?> getSong(String songId, bool isLive) async {
11051105
unawaited(updateRecentlyPlayed(songId));
11061106
return url;
11071107
} on TimeoutException catch (_) {
1108-
logger.log('getSongManifest request timed out for $songId', null, null);
1108+
logger.log('getSong request timed out for $songId', null, null);
11091109
return null;
11101110
} catch (e, stackTrace) {
11111111
logger.log('Error in getSong for songId $songId:', e, stackTrace);

0 commit comments

Comments
 (0)