Skip to content

Commit 16d464b

Browse files
committed
fix client cached manifest not clearing on file upload
1 parent 38ed127 commit 16d464b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Intersect.Server/Web/Controllers/AssetManagement/AssetsController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ public IActionResult AssetsUpload([FromForm] string folder, [FromForm] List<IFor
379379
}
380380
);
381381

382-
if (folder == "client")
382+
if (folder.StartsWith("client"))
383383
{
384384
_clientUpdateManifests.Clear();
385385
}

0 commit comments

Comments
 (0)