We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 851cda3 commit 21b90e4Copy full SHA for 21b90e4
gradle.properties
@@ -10,4 +10,4 @@ sdk.version=default
10
11
# Android
12
android.newDsl=false
13
-moonfin.version=1.8.0
+moonfin.version=1.8.1
server/emby/src/main/kotlin/org/moonfin/server/emby/socket/EmbyWebSocketClient.kt
@@ -155,6 +155,11 @@ class EmbyWebSocketClient(
155
_connectionState.value = EmbyConnectionState.TokenExpired
156
return
157
}
158
+ if (response?.code == 404) {
159
+ // Emby endpoint not available on this server/proxy path; retrying only burns resources.
160
+ _connectionState.value = EmbyConnectionState.ServerUnreachable
161
+ return
162
+ }
163
_connectionState.value = EmbyConnectionState.Error(t)
164
scheduleReconnect()
165
0 commit comments