Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
use no cache when fetchin gfilterlist
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Sep 18, 2023
1 parent 354cfdc commit 7e71591
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/AppStore.vue
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,8 @@ export default defineComponent({
try {
// Temporary solution: Fetch centrally stored filter list to filter out orphaned apps in the appstore.
const response = await fetch(
"https://s3.eu-central-2.wasabisys.com/holochain-launcher/filter-lists/appstore_filter_list_hc0.1.json"
"https://s3.eu-central-2.wasabisys.com/holochain-launcher/filter-lists/appstore_filter_list_hc0.1.json",
{ cache: "no-cache" }
);
const filterList: Array<FilterListEntry> = await response.json();
this.filterList = filterList;
Expand Down

0 comments on commit 7e71591

Please sign in to comment.