diff --git a/client/components/app/Appbar.vue b/client/components/app/Appbar.vue index 6dc74a9d2..0bd4ba9c4 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 d4e88a60d..21a0c179d 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 7f93ef817..c9397c020 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 000000000..8fb2a168c Binary files /dev/null and b/client/static/Logo48.png differ diff --git a/client/static/favicon.ico b/client/static/favicon.ico index 666762518..6561a0844 100644 Binary files a/client/static/favicon.ico and b/client/static/favicon.ico differ diff --git a/package.json b/package.json index f5a40d6ed..73b0f7f97 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 30ecc66f9..43e46fa92 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 7f93ef817..c9397c020 100644 Binary files a/static/Logo.png and b/static/Logo.png differ