Updated migration

- Fixed bug in migration process for single-user mode
- Changed name of migration

Removed unused code for getmp3/mp4 and fixed bug when retrieving playlist if it didn't exist

Fixed bug in streaming code where playlist audio files would not play if the file path was not present

Fixed bug in getallsubscriptions for single user mode
This commit is contained in:
Isaac Abadi
2020-12-22 01:23:43 -05:00
parent afb5e3800c
commit 3f1532b4c6
2 changed files with 11 additions and 23 deletions

View File

@@ -483,7 +483,7 @@ function getAllSubscriptions() {
if (users[i]['subscriptions']) subscriptions = subscriptions.concat(users[i]['subscriptions']);
}
} else {
subscriptions = subscriptions_api.getSubscriptions();
subscriptions = getSubscriptions();
}
return subscriptions;
}