Merge branch 'dev' into fixGroupLogs

This commit is contained in:
github-actions[bot] 2024-06-26 22:41:40 +00:00 committed by GitHub
commit a31692ae84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -131,8 +131,8 @@ async def list_profile_pictures(storage_service: StorageService = Depends(get_st
people = await storage_service.list_files(flow_id=people_path) # type: ignore
space = await storage_service.list_files(flow_id=space_path) # type: ignore
files = [Path("People") / i for i in people]
files += [Path("Space") / i for i in space]
files = [f"People/{i}" for i in people]
files += [f"Space/{i}" for i in space]
return {"files": files}