mirror of https://github.com/Radarr/Radarr
Increased load timeout of UI for remote requests from 7 to 30 seconds.
This commit is contained in:
parent
5fd25ff3f3
commit
41e02208d7
|
@ -2,6 +2,12 @@
|
||||||
urlArgs: 'v=' + window.NzbDrone.Version
|
urlArgs: 'v=' + window.NzbDrone.Version
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (window.location.hostname.toLowerCase() !== 'localhost') {
|
||||||
|
require.config({
|
||||||
|
waitSeconds: 30
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
'app'
|
'app'
|
||||||
|
|
Loading…
Reference in New Issue