summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-05-26 16:22:42 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-05-26 16:22:42 +0900
commit67b6ec3cb30dd4dd25d0818935b28c75b3e8ce22 (patch)
tree7b68b879c01e1b1851b0235ff275530a2d84d6fe /src
parentv1902 (diff)
downloadmisskey-67b6ec3cb30dd4dd25d0818935b28c75b3e8ce22.tar.gz
misskey-67b6ec3cb30dd4dd25d0818935b28c75b3e8ce22.tar.bz2
misskey-67b6ec3cb30dd4dd25d0818935b28c75b3e8ce22.zip
Revert "[Client] Fix bug"
This reverts commit 88566e28512bbfecc9b36dc12f7ad57a3fe799b5.
Diffstat (limited to 'src')
-rw-r--r--src/web/app/desktop/tags/home-widgets/rss-reader.tag9
1 files changed, 1 insertions, 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,