Changed the error message returned if something goes wrong when fetching playing

This commit is contained in:
2017-09-07 23:51:22 +02:00
parent 3eb2bbe54e
commit 0370f051bc

View File

@@ -51,7 +51,7 @@ class PlexRepository {
} }
}) })
.catch((err) => { .catch((err) => {
throw new Error(err); throw new Error('Error handling plex playing. Error: ' + err);
}) })
} }
} }