fix: tmp folder issue, more logs #91

This commit is contained in:
Terry Geng
2020-03-07 23:54:25 +08:00
parent 9e6072526c
commit 01a59852a3
2 changed files with 10 additions and 3 deletions

View File

@ -54,7 +54,7 @@ class URLItem(BaseItem):
self.type = "url"
def uri(self):
return var.music_folder + self.path if self.path[0] != "/" else self.path
return self.path
def is_ready(self):
if self.downloading or self.ready != 'yes':
@ -80,7 +80,7 @@ class URLItem(BaseItem):
info = self._get_info_from_url()
self.validating_lock.release()
if self.duration == 0 and not info:
if not info:
return False
if self.duration > var.config.getint('bot', 'max_track_duration') != 0: