Skip to content

Commit 2340bcc

Browse files
committed
Beta 4
1 parent edb6001 commit 2340bcc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

MovieOrganizer/Html/fileorganizer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@
235235
return;
236236
}
237237

238-
require(['components/itemidentifier/itemidentifier'], function (itemidentifier) {
238+
require(['itemIdentifier'], function (itemIdentifier) {
239239

240-
itemidentifier.showFindNew(extractedName || '', extractedYear, 'Series').then(function (newItem) {
240+
itemIdentifier.showFindNew(extractedName || '', extractedYear, 'Series', ApiClient.serverId()).then(function (newItem) {
241241

242242
if (newItem != null) {
243243
currentNewItem = newItem;
@@ -263,9 +263,9 @@
263263
return;
264264
}
265265

266-
require(['components/itemidentifier/itemidentifier'], function (itemidentifier) {
266+
require(['itemIdentifier'], function (itemIdentifier) {
267267

268-
itemidentifier.showFindNew(extractedName || '', extractedYear, 'Movie').then(function (newItem) {
268+
itemIdentifier.showFindNew(extractedName || '', extractedYear, 'Movie', ApiClient.serverId()).then(function (newItem) {
269269

270270
if (newItem != null) {
271271
currentNewItem = newItem;

MovieOrganizer/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("MovieOrganizer Beta 3")]
9-
[assembly: AssemblyDescription("Beta 3")]
8+
[assembly: AssemblyTitle("MovieOrganizer Beta 4")]
9+
[assembly: AssemblyDescription("Beta 4")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("MovieOrganizer")]

0 commit comments

Comments
 (0)