Fix Subsonic servertype lock from docker configuration

This commit is contained in:
jeffvli 2024-09-28 21:37:09 -07:00
parent 107074b240
commit 6f1b78c2d6

View File

@ -69,6 +69,8 @@ export const toServerType = (value?: string): ServerType | null => {
return ServerType.JELLYFIN;
case ServerType.NAVIDROME:
return ServerType.NAVIDROME;
case ServerType.SUBSONIC:
return ServerType.SUBSONIC;
default:
return null;
}