diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2023-02-21 20:30:52 +0100 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2023-02-21 20:30:52 +0100 |
commit | 1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86 (patch) | |
tree | 16bf83a61ce8dacd31a51fdbce9d8ef99cf97928 /travnik.py | |
parent | escaping html in filenames (diff) | |
download | travnik-1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86.tar travnik-1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86.tar.gz travnik-1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86.tar.bz2 travnik-1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86.tar.lz travnik-1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86.tar.xz travnik-1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86.tar.zst travnik-1e21a8bc7d39547e8e5cb8f9bd7322d7a6c22d86.zip |
Diffstat (limited to '')
-rw-r--r-- | travnik.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -79,6 +79,8 @@ class Torrent(): decoded = self.dict.get(b'info').get(b'name').decode() except UnicodeDecodeError: decoded = self.dict.get(b'info').get(b'name').decode("iso-8859-2") + except AttributeError: + decoded = str(self.dict.get(b'info').get(b'name')) if search(r, decoded, IGNORECASE): return True for path, size in self.paths(): @@ -98,7 +100,7 @@ class Torrent(): except UnicodeDecodeError: decoded = name.decode("iso-8859-2") # TODO we could try detecting the encoding if search(r, decoded, IGNORECASE): - files[decoded if decode else name] = content + files[decoded if decode else name] = content if type(content) is int else {} if type(content) is dict: inhalt = matching_files_r(content, r, decode) if inhalt: |