Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2017-08-19 13:47:52 +0300
committerSteffen van Bergerem <svbergerem@omgsrsly.net>2017-08-24 15:57:43 +0300
commit9240605ad580c911ef0b76975b6ee88c32d5dcfb (patch)
treea2ae7cc5f6acb6be5a79b0e4f85f6ed04fee9fb1 /config.ru
parent8f0c74f72e3de1448a7a60a5f4e8998a8efab410 (diff)
Remove internet explorer version check
This was in all stack traces, which confused people ... We currently only support IE11, so the version check was already old again ... When we break old browser versions, we don't check that for other browsers. So older IE browser just break, like very other older browser too. closes #7557
Diffstat (limited to 'config.ru')
-rw-r--r--config.ru2
1 files changed, 0 insertions, 2 deletions
diff --git a/config.ru b/config.ru
index 44a140077..a43a2f394 100644
--- a/config.ru
+++ b/config.ru
@@ -5,7 +5,6 @@
# This file is used by Rack-based servers to start the application.
require ::File.expand_path("../config/environment", __FILE__)
-require ::File.expand_path("../lib/rack/internet_explorer_version", __FILE__)
# Kill unicorn workers really aggressively (at 300mb)
if defined?(Unicorn)
@@ -16,6 +15,5 @@ if defined?(Unicorn)
use Unicorn::WorkerKiller::Oom, oom_min, oom_max
end
use Rack::Deflater
-use Rack::InternetExplorerVersion, minimum: 9
run Diaspora::Application