Cardigann: make sure GUID get's set (#708)

This commit is contained in:
kaso17 2016-11-20 10:15:48 +01:00 committed by GitHub
parent 52a56f5088
commit 328f652e1b
1 changed files with 4 additions and 1 deletions

View File

@ -661,7 +661,10 @@ namespace Jackett.Indexers
release.Comments = url;
break;
case "comments":
release.Comments = resolvePath(value);
var CommentsUrl = resolvePath(value);
release.Comments = CommentsUrl;
if (release.Guid == null)
release.Guid = CommentsUrl;
break;
case "title":
release.Title = value;