// ==UserScript==
// @name           IRCQuotes Shitlagserver Autorefresh
// @namespace      http://gm.taistelumarsu.org/
// @description    Auto-refresh on internal server error
// @include        http://ircquotes.fi/*
// @include        http://*.ircquotes.fi/*
// ==/UserScript==
if (document.title == '500 Internal Server Error') {
	location.replace(location.href);
}
