From 67b6ec3cb30dd4dd25d0818935b28c75b3e8ce22 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 26 May 2017 16:22:42 +0900 Subject: [PATCH] Revert "[Client] Fix bug" This reverts commit 88566e28512bbfecc9b36dc12f7ad57a3fe799b5. --- src/web/app/desktop/tags/home-widgets/rss-reader.tag | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/web/app/desktop/tags/home-widgets/rss-reader.tag b/src/web/app/desktop/tags/home-widgets/rss-reader.tag index 0964fc1415..9a2b2fce1f 100644 --- a/src/web/app/desktop/tags/home-widgets/rss-reader.tag +++ b/src/web/app/desktop/tags/home-widgets/rss-reader.tag @@ -78,14 +78,7 @@ }); this.fetch = () => { - const headers = new Headers(); - headers.append('pragma', 'no-cache'); - headers.append('cache-control', 'no-cache'); - - fetch(`https://api.rss2json.com/v1/api.json?rss_url=${this.url}`, { - method: 'GET', - headers - }).then(res => { + fetch(`https://api.rss2json.com/v1/api.json?rss_url=${this.url}`).then(res => { res.json().then(feed => { this.update({ initializing: false,