Skip to content

Commit

Permalink
Beta 4
Browse files Browse the repository at this point in the history
  • Loading branch information
softworkz committed Aug 7, 2016
1 parent edb6001 commit 2340bcc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions MovieOrganizer/Html/fileorganizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@
return;
}

require(['components/itemidentifier/itemidentifier'], function (itemidentifier) {
require(['itemIdentifier'], function (itemIdentifier) {

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

if (newItem != null) {
currentNewItem = newItem;
Expand All @@ -263,9 +263,9 @@
return;
}

require(['components/itemidentifier/itemidentifier'], function (itemidentifier) {
require(['itemIdentifier'], function (itemIdentifier) {

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

if (newItem != null) {
currentNewItem = newItem;
Expand Down
4 changes: 2 additions & 2 deletions MovieOrganizer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("MovieOrganizer Beta 3")]
[assembly: AssemblyDescription("Beta 3")]
[assembly: AssemblyTitle("MovieOrganizer Beta 4")]
[assembly: AssemblyDescription("Beta 4")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("MovieOrganizer")]
Expand Down

0 comments on commit 2340bcc

Please sign in to comment.