Only remind once that direct paths are unverified
This commit is contained in:
parent
94a1096961
commit
8d9620b408
3 changed files with 5 additions and 0 deletions
|
@ -2316,6 +2316,7 @@ class API():
|
||||||
utils.window('emby_shouldStop', value="true")
|
utils.window('emby_shouldStop', value="true")
|
||||||
playurl = False
|
playurl = False
|
||||||
utils.window('emby_pathverified', value='true')
|
utils.window('emby_pathverified', value='true')
|
||||||
|
utils.settings('emby_pathverified', value='true')
|
||||||
return playurl
|
return playurl
|
||||||
|
|
||||||
def askToValidate(self, url):
|
def askToValidate(self, url):
|
||||||
|
|
|
@ -239,6 +239,9 @@ class LibrarySync(Thread):
|
||||||
'enableBackgroundSync') == "true" else False
|
'enableBackgroundSync') == "true" else False
|
||||||
self.limitindex = int(utils.settings('limitindex'))
|
self.limitindex = int(utils.settings('limitindex'))
|
||||||
|
|
||||||
|
if utils.settings('emby_pathverified') == 'true':
|
||||||
|
utils.window('emby_pathverified', value='true')
|
||||||
|
|
||||||
# Time offset between Kodi and PMS in seconds (=Koditime - PMStime)
|
# Time offset between Kodi and PMS in seconds (=Koditime - PMStime)
|
||||||
self.timeoffset = 0
|
self.timeoffset = 0
|
||||||
# Time in seconds to look into the past when looking for PMS changes
|
# Time in seconds to look into the past when looking for PMS changes
|
||||||
|
|
|
@ -74,6 +74,7 @@
|
||||||
<setting id="enableImportSongRating" type="bool" label="30524" default="true" visible="false"/>
|
<setting id="enableImportSongRating" type="bool" label="30524" default="true" visible="false"/>
|
||||||
<setting id="enableExportSongRating" type="bool" label="30525" default="false" visible="false" />
|
<setting id="enableExportSongRating" type="bool" label="30525" default="false" visible="false" />
|
||||||
<setting id="enableUpdateSongRating" type="bool" label="30526" default="false" visible="false" />
|
<setting id="enableUpdateSongRating" type="bool" label="30526" default="false" visible="false" />
|
||||||
|
<setting id="emby_pathverified" type="bool" default="false" visible="false" /> <!-- If 'false': one single warning message pops up if PKC cannot verify direct paths -->
|
||||||
</category>
|
</category>
|
||||||
|
|
||||||
<category label="30516"><!-- Playback -->
|
<category label="30516"><!-- Playback -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue