File tree 2 files changed +3
-8
lines changed
2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" standalone =" yes" ?>
2
- <addon id =" plugin.video.tubed" name =" Tubed" version =" 1.0.2 " provider-name =" anxdpanic" >
2
+ <addon id =" plugin.video.tubed" name =" Tubed" version =" 1.0.3 " provider-name =" anxdpanic" >
3
3
<requires >
4
4
<import addon =" xbmc.python" version =" 3.0.0" />
5
5
<import addon =" inputstream.adaptive" />
15
15
<extension point =" xbmc.service" library =" resources/lib/service.py" />
16
16
<extension point =" xbmc.addon.metadata" >
17
17
<news >
18
- - de_DE translation |contrib: tweimer|
19
- - el_GR translation |contrib: Twilight0|
20
- - pt_BR translation |contrib: MediaBrasil|
21
- - pt_PT translation |contrib: enen92|
22
- - ro_RO translation |contrib: tmihai20|
23
- - zh_TW translation |contrib: JuenTingShie|
18
+ - fixup iso8601 duration parsing
24
19
</news >
25
20
<assets >
26
21
<icon >resources/media/icon.png</icon >
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def iso8601_duration_to_seconds(duration):
63
63
string = duration .split ('P' )[- 1 ]
64
64
65
65
if 'T' in string :
66
- macro_string , micro_string = duration .split ('T' )
66
+ macro_string , micro_string = string .split ('T' )
67
67
68
68
if macro_string :
69
69
years , macro_string = _iso8601_duration_token (macro_string , 'Y' )
You can’t perform that action at this time.
0 commit comments