From 1213373027073ea15d944194b10f507cebc9978e Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Tue, 16 Oct 2018 12:24:54 +0900 Subject: [PATCH] Use cache with RSS (#2915) --- src/client/app/common/views/widgets/rss.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/app/common/views/widgets/rss.vue b/src/client/app/common/views/widgets/rss.vue index 448eee9fb..68ab8e3a5 100644 --- a/src/client/app/common/views/widgets/rss.vue +++ b/src/client/app/common/views/widgets/rss.vue @@ -44,7 +44,6 @@ export default define({ }, fetch() { fetch(`https://api.rss2json.com/v1/api.json?rss_url=${this.props.url}`, { - cache: 'no-cache' }).then(res => { res.json().then(feed => { this.items = feed.items;