mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 15:37:55 +02:00
Bug: Fixed qualityProfile so it returns the selected cutoff in the model.
Now using trim before checking title.length for AddExistingSeries.
This commit is contained in:
@@ -27,7 +27,7 @@ $(".addExistingButton").live('click', function () {
|
||||
|
||||
var path = root.find(".seriesPathValue Label").text();
|
||||
|
||||
if (seriesId === 0 || title.length === 0) {
|
||||
if (seriesId === 0 || $.trim(title).length === 0) {
|
||||
$.gritter.add({
|
||||
title: 'Failed',
|
||||
text: 'Invalid Series Information for \'' + path + '\'',
|
||||
|
Reference in New Issue
Block a user