diff --git a/client/components/app/Appbar.vue b/client/components/app/Appbar.vue index 6dc74a9d..0bd4ba9c 100644 --- a/client/components/app/Appbar.vue +++ b/client/components/app/Appbar.vue @@ -2,7 +2,7 @@
- + arrow_back diff --git a/client/package.json b/client/package.json index d4e88a60..21a0c179 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "audiobookshelf-client", - "version": "0.9.89-beta", + "version": "0.9.90-beta", "description": "Audiobook manager and player", "main": "index.js", "scripts": { diff --git a/client/static/Logo.png b/client/static/Logo.png index 7f93ef81..c9397c02 100644 Binary files a/client/static/Logo.png and b/client/static/Logo.png differ diff --git a/client/static/Logo48.png b/client/static/Logo48.png new file mode 100644 index 00000000..8fb2a168 Binary files /dev/null and b/client/static/Logo48.png differ diff --git a/client/static/favicon.ico b/client/static/favicon.ico index 66676251..6561a084 100644 Binary files a/client/static/favicon.ico and b/client/static/favicon.ico differ diff --git a/package.json b/package.json index f5a40d6e..73b0f7f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "audiobookshelf", - "version": "0.9.89-beta", + "version": "0.9.90-beta", "description": "Self-hosted audiobook server for managing and playing audiobooks.", "main": "index.js", "scripts": { diff --git a/server/StreamManager.js b/server/StreamManager.js index 30ecc66f..43e46fa9 100644 --- a/server/StreamManager.js +++ b/server/StreamManager.js @@ -91,7 +91,7 @@ class StreamManager { Logger.info('Close Stream Request', socket.id) var client = socket.sheepClient if (!client || !client.stream) { - Logger.error('No stream for client', client.user.id) + Logger.error('No stream for client', (client && client.user) ? client.user.username : 'No Client') client.socket.emit('stream_closed', 'n/a') return } diff --git a/static/Logo.png b/static/Logo.png index 7f93ef81..c9397c02 100644 Binary files a/static/Logo.png and b/static/Logo.png differ