mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00

* feat: implement new SourcedTrack for youtube and piped * refactor: replace old spotube track with sourced track * feat: add jiosaavn as audio source * fix: download not working other than jiosaavn * Merge branch 'dev' into feat-jiosaavn
8 lines
215 B
Dart
8 lines
215 B
Dart
import 'package:spotify/spotify.dart';
|
|
|
|
class TrackNotFoundException implements Exception {
|
|
factory TrackNotFoundException(Track track) {
|
|
throw Exception("Failed to find any results for ${track.name}");
|
|
}
|
|
}
|