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 353
353
"text" : " [deprecated] Alive message interval" ,
354
354
"description" : " MIGRATING - TO BE REMOVED ONCE WEB HAS BEEN ALTERED"
355
355
},
356
+ "SendOnlyMatchedHost" : {
357
+ "text" : " Send only matched host" ,
358
+ "description" : " Only send data if the host matches"
359
+ },
356
360
"AutoCreatePlayToProfiles" : {
357
361
"text" : " Automatically create PlayTo device profiles" ,
358
362
"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