1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

unknow quality is rejected by AcceptableSizeSpecification

This commit is contained in:
kay.one
2013-06-06 16:05:06 -07:00
parent 5d563f041e
commit a5be71fd8c
4 changed files with 29 additions and 8 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

+2 -2
View File
@@ -1,6 +1,6 @@
"use strict";
define(['app'], function () {
NzbDrone.MainMenuView = Backbone.Marionette.ItemView.extend({
var MainMenuView = Backbone.Marionette.ItemView.extend({
events: {
'click a': 'onClick'
},
@@ -37,6 +37,6 @@ define(['app'], function () {
}
});
return new MainMenuView();
return new NzbDrone.MainMenuView();
});