Adjust sources.xml

switch to adding only smb:// as suggested on forums
This commit is contained in:
angelblue05 2016-02-04 03:41:39 -06:00
parent 95ed199218
commit 6b00eb466e
1 changed files with 15 additions and 14 deletions

View File

@ -312,19 +312,20 @@ def sourcesXML():
etree.SubElement(video, 'default', attrib={'pathversion': "1"}) etree.SubElement(video, 'default', attrib={'pathversion': "1"})
# Add elements # Add elements
for i in range(1, 3): count = 2
for source in root.findall('.//path'): for source in root.findall('.//path'):
if source.text == "smb://embydummy/dummypath%s/" % i: if source.text == "smb://":
# Already there, skip count -= 1
if count == 0:
# sources already set
break break
else: else:
# Missing smb:// occurences, re-add.
for i in range(0, count):
source = etree.SubElement(video, 'source') source = etree.SubElement(video, 'source')
etree.SubElement(source, 'name').text = "Emby" etree.SubElement(source, 'name').text = "Emby"
etree.SubElement(source, 'path', attrib={'pathversion': "1"}).text = ( etree.SubElement(source, 'path', attrib={'pathversion': "1"}).text = "smb://"
"smb://embydummy/dummypath%s/" % i
)
etree.SubElement(source, 'allowsharing').text = "true" etree.SubElement(source, 'allowsharing').text = "true"
# Prettify and write to file # Prettify and write to file
try: try: