Conditional GET ignored with fetch API
问题 I am fetching and parsing an RSS feed (https://www.mangaupdates.com/rss.php) with Discord.js/Node.js. I'm currently trying to add a conditional If-Modified-Since header to make a conditional GET request to the RSS feed. Here is my code: fetch(mangaUpdatesRSS, { method: 'GET', headers: {'If-Modified-Since': new Date().toUTCString()} }) .then(res => { console.log(res.status); The response status is always 200 even though it should only be making a request if it's been modified since the time of