diff --git a/modules/api_client.py b/modules/api_client.py index 1e0e4c5..311acaf 100644 --- a/modules/api_client.py +++ b/modules/api_client.py @@ -64,7 +64,7 @@ async def upload_pic(filepath: str, token: Union[str, None] = None) -> Tuple[boo duplicates = [] if "duplicates" in response.json(): for duplicate in response.json()["duplicates"]: - duplicates.append(f'{configGet("address", "posting", "api")}/photos/{duplicate["id"]}') + duplicates.append(f'{configGet("address_external", "posting", "api")}/photos/{duplicate["id"]}') return True, duplicates except: return False, []