mirror of
https://github.com/TagStudioDev/TagStudio.git
synced 2026-01-30 14:50:47 +00:00
fix: strip leading slash in library items
This commit is contained in:
@@ -808,7 +808,7 @@ class Library:
|
||||
f'{entry.path}/{entry.filename}')).lower().lstrip('\\').lstrip('/')] = entry.id
|
||||
else:
|
||||
self.filename_to_entry_id_map[str(
|
||||
os.path.normpath(f'{entry.path}/{entry.filename}'))] = entry.id
|
||||
os.path.normpath(f'{entry.path}/{entry.filename}')).lstrip('/')] = entry.id
|
||||
|
||||
# def _map_filenames_to_entry_ids(self):
|
||||
# """Maps the file paths of entries to their index in the library list."""
|
||||
|
||||
Reference in New Issue
Block a user