commit
60d0c40b13
|
@ -5,5 +5,4 @@
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/plugin.video.torrenter.iml" filepath="$PROJECT_DIR$/.idea/plugin.video.torrenter.iml" />
|
<module fileurl="file://$PROJECT_DIR$/.idea/plugin.video.torrenter.iml" filepath="$PROJECT_DIR$/.idea/plugin.video.torrenter.iml" />
|
||||||
</modules>
|
</modules>
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
|
|
1891
.idea/workspace.xml
1891
.idea/workspace.xml
File diff suppressed because it is too large
Load Diff
|
@ -1064,7 +1064,10 @@ class qBittorrent:
|
||||||
'uploading': 'seeding',
|
'uploading': 'seeding',
|
||||||
'stalledUP': 'seeding',
|
'stalledUP': 'seeding',
|
||||||
}
|
}
|
||||||
return mapping[code]
|
if code in mapping:
|
||||||
|
return mapping[code]
|
||||||
|
else:
|
||||||
|
return 'unknown'
|
||||||
|
|
||||||
|
|
||||||
class Deluge:
|
class Deluge:
|
||||||
|
|
Loading…
Reference in New Issue