bytes/str

This commit is contained in:
Jack Robison 2019-05-10 11:48:49 -04:00
parent 324cbdcdb2
commit 1a182bc9bd
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -545,8 +545,8 @@ class SQLiteStorage(SQLiteMixin):
"select stream_hash, download_directory, file_name from file where saved_file=1" "select stream_hash, download_directory, file_name from file where saved_file=1"
).fetchall(): ).fetchall():
if download_directory and file_name and os.path.isfile( if download_directory and file_name and os.path.isfile(
os.path.join(binascii.unhexlify(download_directory.encode()).decode(), os.path.join(binascii.unhexlify(download_directory).decode(),
binascii.unhexlify(file_name.encode()).decode())): binascii.unhexlify(file_name).decode())):
continue continue
else: else:
removed.append((stream_hash,)) removed.append((stream_hash,))