Revert playlist ignoring missing source exception

This commit is contained in:
Kelvin 2023-10-17 23:07:20 +02:00
parent 73321ee362
commit f4370c1bfd

View file

@ -267,9 +267,10 @@ class StatePlaylists {
return@map null;
}
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...
builder.messages.add("No source enabled for [${it}]");
return@map null;
//builder.messages.add("No source enabled for [${it}]");
//return@map null;
}
catch(ex: Throwable) {
throw ReconstructionException(name, "${name}:[${it}] ${ex.message}", ex);