Skip to content

Commit

Permalink
fixed #1328, in what feels like a hacky way (#1456)
Browse files Browse the repository at this point in the history
  • Loading branch information
Minnowo authored Oct 14, 2023
1 parent ad6ee2f commit f2292d1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions hydrus/client/media/ClientMediaManagers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1109,6 +1109,14 @@ def ProcessContentUpdate( self, service_key, content_update ):
elif action == HC.CONTENT_UPDATE_ADD:

self._AddToService( service_key )

service_type = HG.client_controller.services_manager.GetServiceType( service_key )

if service_type == HC.IPFS:

(file_info_manager, multihash) = row

self._service_keys_to_filenames[service_key] = multihash

elif action == HC.CONTENT_UPDATE_DELETE:

Expand Down

0 comments on commit f2292d1

Please sign in to comment.