Skip to content

Commit

Permalink
fix: remove deprecated feeds (#282)
Browse files Browse the repository at this point in the history
docs: fix docs generation
  • Loading branch information
TobiTenno authored Feb 4, 2024
1 parent 2ea6038 commit 97caae6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 49 deletions.
2 changes: 1 addition & 1 deletion handlers/events/cycleLike.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { between, lastUpdated, fromNow } from '../../utilities/index.js';
* CylceData parser
* @param {CycleLike} cycleData data for parsing all cycles like this
* @param {Deps} deps dependencies for processing
* @returns {*[]}
* @returns {Object[]}
*/
export default (cycleData, deps) => {
const packet = {
Expand Down
47 changes: 0 additions & 47 deletions resources/rssFeeds.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,6 @@
"key": "forum.updates.switch",
"defaultAttach": "https://i.imgur.com/eY1NkzO.png"
},
{
"url": "https://forums.warframe.com/forum/2-pc-announcements.xml",
"defaultAttach": "https://i.imgur.com/CNrsc7V.png",
"key": "forum.announcements.pc"
},
{
"url": "https://forums.warframe.com/forum/151-ps4-announcements.xml",
"defaultAttach": "https://i.imgur.com/CNrsc7V.png",
"key": "forum.announcements.ps4"
},
{
"url": "https://forums.warframe.com/forum/252-xbox-one-announcements.xml",
"defaultAttach": "https://i.imgur.com/CNrsc7V.png",
"key": "forum.announcements.xb1"
},
{
"url": "https://forums.warframe.com/forum/1198-nintendo-switch-announcements.xml",
"defaultAttach": "https://i.imgur.com/CNrsc7V.png",
"key": "forum.announcements.switch"
},
{
"url": "https://forums.warframe.com/forum/170-announcements-events.xml",
"key": "forum.news",
Expand Down Expand Up @@ -152,15 +132,6 @@
"icon_url": "https://content.invisioncic.com/Mwarframe/monthly_2016_05/Pablo.thumb.png.35bb0384ef7b88e807d55ffc31af0896.png"
}
},
{
"url": "https://forums.warframe.com/discover/1778.xml",
"key": "forum.staff.connor",
"author": {
"name": "[DE]Connor",
"url": "https://forums.warframe.com/profile/710227-deconnor/",
"icon_url": "https://content.invisioncic.com/Mwarframe/monthly_2017_02/nezha_watermarked_120_by_kevin_glint-d9zkt5n.thumb.jpg.c9519505f40a304bece8eb435eb99ddd.jpg"
}
},
{
"url": "https://forums.warframe.com/discover/1779.xml",
"key": "forum.staff.marcus",
Expand All @@ -169,23 +140,5 @@
"url": "https://forums.warframe.com/profile/3443485-demarcus/",
"icon_url": "https://content.invisioncic.com/Mwarframe/monthly_2018_01/5a55278d71caa_MarcusIIPrint.thumb.jpg.16cb689d778112333cffb6fe546b89ec.jpg"
}
},
{
"url": "https://forums.warframe.com/discover/1780.xml",
"key": "forum.staff.george",
"author": {
"name": "[DE]George",
"url": "https://forums.warframe.com/profile/138665-degeorge/",
"icon_url": "https://content.invisioncic.com/Mwarframe/monthly_2016_02/George_Forum_Photo.thumb.png.62acd07b2b2e40831eca57a0e230a2b2.png"
}
},
{
"url": "https://forums.warframe.com/discover/1781.xml",
"key": "forum.staff.bear",
"author": {
"name": "[DE]Bear",
"url": "https://forums.warframe.com/profile/1589-debear/",
"icon_url": "https://content.invisioncic.com/Mwarframe/monthly_2018_02/juggerdaddy.thumb.gif.85061b940143c7310801ce00337636ac.gif"
}
}
]
2 changes: 1 addition & 1 deletion utilities/Cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class CronCache extends EventEmitter {
return cache;
}

constructor(/** @type string */ url, /** @type [string] */ pattern) {
constructor(/** @type string */ url, /** @type string */ pattern) {
super();
this.#url = url;
if (pattern) this.#pattern = pattern;
Expand Down

0 comments on commit 97caae6

Please sign in to comment.