diff --git a/app/connections.py b/app/connections.py
index 9562b020..14412c2c 100644
--- a/app/connections.py
+++ b/app/connections.py
@@ -733,9 +733,9 @@ class HttpAPI:
self._executor.shutdown()
@staticmethod
- def get_response(req_type, url, data=None, s_type=SettingsType.ENIGMA_2):
+ def get_response(req_type, url, data=None, s_type=SettingsType.ENIGMA_2, timeout=10):
try:
- with urlopen(Request(url, data=data), timeout=10) as f:
+ with urlopen(Request(url, data=data), timeout=timeout) as f:
if s_type is SettingsType.ENIGMA_2:
return HttpAPI.get_e2_response_data(req_type, f)
elif s_type is SettingsType.NEUTRINO_MP:
diff --git a/app/ui/control.glade b/app/ui/control.glade
index c86cfa07..751cf4df 100644
--- a/app/ui/control.glade
+++ b/app/ui/control.glade
@@ -3,7 +3,7 @@
The MIT License (MIT)
-Copyright (c) 2018-2021 Dmitriy Yefremov
+Copyright (c) 2018-2022 Dmitriy Yefremov
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -32,7 +32,7 @@ Author: Dmitriy Yefremov
-
+