File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 362
362
"text" : " [deprecated] Alive message interval" ,
363
363
"description" : " MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED"
364
364
},
365
+ "SendOnlyMatchedHost" : {
366
+ "text" : " Send only matched host" ,
367
+ "description" : " Only send data if the host matches"
368
+ },
365
369
"AutoCreatePlayToProfiles" : {
366
370
"text" : " Automatically create PlayTo device profiles" ,
367
371
"description" : " "
Original file line number Diff line number Diff line change @@ -140,7 +140,6 @@ interface DlnaNamedConfiguration {
140
140
EnableServer: boolean ;
141
141
AliveMessageIntervalSeconds: number ;
142
142
BlastAliveMessages: boolean ;
143
- BlastAliveMessageIntervalSeconds: number ;
144
143
DefaultUserId: string ;
145
144
AutoCreatePlayToProfiles: boolean ;
146
145
SendOnlyMatchedHost: boolean ;
@@ -152,6 +151,9 @@ export default Vue.extend({
152
151
await $api .configuration .getNamedConfiguration ({ key: ' dlna' })
153
152
).data ;
154
153
154
+ // remove deprecated duplicate option
155
+ delete dlnaSettings .BlastAliveMessageIntervalSeconds ;
156
+
155
157
const dlnaProfiles = (await $api .dlna .getProfileInfos ()).data ;
156
158
const users = (await $api .user .getUsers ()).data ;
157
159
You can’t perform that action at this time.
0 commit comments