Fix Subsonic servertype lock from docker configuration
This commit is contained in:
parent
107074b240
commit
6f1b78c2d6
1 changed files with 2 additions and 0 deletions
|
@ -69,6 +69,8 @@ export const toServerType = (value?: string): ServerType | null => {
|
||||||
return ServerType.JELLYFIN;
|
return ServerType.JELLYFIN;
|
||||||
case ServerType.NAVIDROME:
|
case ServerType.NAVIDROME:
|
||||||
return ServerType.NAVIDROME;
|
return ServerType.NAVIDROME;
|
||||||
|
case ServerType.SUBSONIC:
|
||||||
|
return ServerType.SUBSONIC;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue