mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-08-02 22:30:40 +00:00
Revert playlist ignoring missing source exception
This commit is contained in:
parent
73321ee362
commit
f4370c1bfd
1 changed files with 3 additions and 2 deletions
|
@ -267,9 +267,10 @@ class StatePlaylists {
|
||||||
return@map null;
|
return@map null;
|
||||||
}
|
}
|
||||||
catch(ex: NoPlatformClientException) {
|
catch(ex: NoPlatformClientException) {
|
||||||
|
throw ReconstructionException(name, "No source enabled for [${it}]", ex);
|
||||||
//TODO: Propagate this to dialog, and then back, allowing users to enable plugins...
|
//TODO: Propagate this to dialog, and then back, allowing users to enable plugins...
|
||||||
builder.messages.add("No source enabled for [${it}]");
|
//builder.messages.add("No source enabled for [${it}]");
|
||||||
return@map null;
|
//return@map null;
|
||||||
}
|
}
|
||||||
catch(ex: Throwable) {
|
catch(ex: Throwable) {
|
||||||
throw ReconstructionException(name, "${name}:[${it}] ${ex.message}", ex);
|
throw ReconstructionException(name, "${name}:[${it}] ${ex.message}", ex);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue