Youtube Coronavirus fix

try to take over the world!

// ==UserScript==
// @name         Youtube Coronavirus fix
// @namespace    http://radexito.ssd-linuxpl.com
// @version      0.1
// @description  try to take over the world!
// @author       Radosław Wysocki
// @match        https://www.youtube.com/watch?v=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (!document.getElementsByClassName("ytp-error")) {
        window.location.reload();
    }
})();