Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
SiCKRAGE
sickrage
Commits
23f9684e
Commit
23f9684e
authored
Oct 14, 2018
by
echel0n
Browse files
Fixed issues with removing custom torrent/newznab providers
parent
e2132a29
Changes
3
Hide whitespace changes
Inline
Side-by-side
changelog.md
View file @
23f9684e
# Changelog
-
*
8d0178c - 2018-10-14: Fixed issue#286 - added support for non-english indexer images
-
*
0ca909e - 2018-10-14: Fixed issues with removing custom torrent/newznab providers
-
*
e2132a2 - 2018-10-14: Fixed issue#286 - added support for non-english indexer images
-
*
d186f55 - 2018-10-14: Release v9.3.87
-
*
ca05ceb - 2018-10-14: Fixed issue with freebsd init script not daemonizing the app
-
*
10fc6b3 - 2018-10-14: Release v9.3.86
...
...
sickrage/core/webserver/static/js/core.min.js
View file @
23f9684e
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/js/core.js
View file @
23f9684e
...
...
@@ -4817,9 +4817,8 @@ $(document).ready(function ($) {
},
deleteNewznabProvider
:
function
(
id
)
{
$
(
'
#editANewznabProvider
'
).
removeOption
(
id
);
$
(
"
#editANewznabProvider
option[value='
"
+
id
+
"
']
"
).
remove
(
);
SICKRAGE
.
config
.
providers
.
populateNewznabSection
();
$
(
'
li
'
).
remove
(
'
#
'
+
id
);
delete
SICKRAGE
.
config
.
providers
.
newznabProviders
[
id
];
SICKRAGE
.
config
.
providers
.
refreshProviderList
();
},
...
...
@@ -4958,9 +4957,8 @@ $(document).ready(function ($) {
},
deleteTorrentRssProvider
:
function
(
id
)
{
$
(
'
#editATorrentRssProvider
'
).
removeOption
(
id
);
$
(
"
#editATorrentRssProvider
option[value='
"
+
id
+
"
']
"
).
remove
(
);
SICKRAGE
.
config
.
providers
.
populateTorrentRssSection
();
$
(
'
li
'
).
remove
(
'
#
'
+
id
);
delete
SICKRAGE
.
config
.
providers
.
torrentRssProviders
[
id
];
SICKRAGE
.
config
.
providers
.
refreshProviderList
();
},
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment