Skip to content

Commit

Permalink
Fix Subsonic servertype lock from docker configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffvli committed Sep 29, 2024
1 parent 107074b commit 6f1b78c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/renderer/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 6f1b78c

Please sign in to comment.