Enhance order of clearing the cache and potentially accessing the db

This commit is contained in:
Julian Raufelder 2022-04-13 16:28:57 +02:00
parent e373cabc96
commit 734b98e759
No known key found for this signature in database
GPG Key ID: 17EE71F6634E381D

View File

@ -67,9 +67,9 @@ class CloudRepositoryImpl implements CloudRepository {
}
Cloud storedCloud = mapper.fromEntity(database.store(mapper.toEntity(cloud)));
database.clearCache();
dispatchingCloudContentRepository.updateCloudContentRepositoryFor(storedCloud);
database.clearCache();
return storedCloud;
}