Update extension regex to match URI fragments (#264)

This commit is contained in:
Nathan Spicer-Davis
2021-04-12 23:51:40 -04:00
committed by Ali Parlakci
parent ab7a0f6a51
commit 59ab5d8777
2 changed files with 3 additions and 1 deletions

View File

@@ -64,7 +64,7 @@ class Resource:
self.hash = hashlib.md5(self.content)
def _determine_extension(self) -> Optional[str]:
extension_pattern = re.compile(r'.*(\..{3,5})(?:\?.*)?$')
extension_pattern = re.compile(r'.*(\..{3,5})(?:\?.*)?(?:#.*)?$')
match = re.search(extension_pattern, self.url)
if match:
return match.group(1)