diff --git a/components/app/Appbar.vue b/components/app/Appbar.vue
index c4628437..a2e9a8bd 100644
--- a/components/app/Appbar.vue
+++ b/components/app/Appbar.vue
@@ -8,9 +8,9 @@
arrow_back
-
+
-
{{ currentLibraryName }}
+
{{ currentLibraryName }}
diff --git a/layouts/default.vue b/layouts/default.vue
index 1b808df2..68a10886 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -213,8 +213,9 @@ export default {
mediaProgress: prog
}
newLocalMediaProgress = await this.$db.syncServerMediaProgressWithLocalMediaProgress(payload)
- } else {
+ } else if (!localProg) {
// Check if local library item exists
+ // local media progress may not exist yet if it hasn't been played
var localLibraryItem = await this.$db.getLocalLibraryItemByLId(prog.libraryItemId)
if (localLibraryItem) {
if (prog.episodeId) {
diff --git a/tailwind.config.js b/tailwind.config.js
index 368e3bfd..a0011750 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -36,6 +36,9 @@ module.exports = {
},
fontSize: {
xxs: '0.625rem'
+ },
+ maxWidth: {
+ '24': '6rem'
}
}
},