1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix missing spread operator

This commit is contained in:
Bill Thornton 2022-04-21 13:58:39 -04:00
parent 4d4725f05d
commit dbfc1e27b4

View file

@ -70,7 +70,7 @@ class ServerConnections extends ConnectionManager {
connect(options) {
return super.connect({
enableAutoLogin: appSettings.enableAutoLogin(),
options
...options
});
}