Skip to content

Commit

Permalink
Disable mymaps cache
Browse files Browse the repository at this point in the history
Signed-off-by: Arne Hamann <[email protected]>
  • Loading branch information
tacruc committed Jan 3, 2023
1 parent 7fa723c commit 6152964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/MyMapsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public function getAllMyMaps($userId){

$MyMaps = [];
try {
$MyMaps = $this->myMapsPathsCache->get($userId);
$MyMaps = null; // $this->myMapsPathsCache->get($userId);
if ($MyMaps === null) {
$MyMaps = $this->updateMyMapsCache($userId);
}
Expand Down

0 comments on commit 6152964

Please sign in to comment.