Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.

Commit

Permalink
Merge pull request #15 from 1earch/fix-issue-14
Browse files Browse the repository at this point in the history
Fix NullReference when organising
  • Loading branch information
joshuaboniface committed Sep 20, 2019
2 parents ef75881 + 6816675 commit f8e1bbc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Emby.AutoOrganize/Configuration/fileorganizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
function populateMedias(context) {

loading.show();
ApiClient.getItems(null, {
ApiClient.getItems(ApiClient.getCurrentUserId(), {
recursive: true,
includeItemTypes: chosenType,
sortBy: 'SortName'
Expand Down
4 changes: 2 additions & 2 deletions Emby.AutoOrganize/Emby.AutoOrganize.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyVersion>3.0.0</AssemblyVersion>
<FileVersion>3.0.0</FileVersion>
<AssemblyVersion>4.0.0</AssemblyVersion>
<FileVersion>4.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion build.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "jellyfin-plugin-autoorganize"
guid: "70b7b43b-471b-4159-b4be-56750c795499"
version: "3" # Please increment with each pull request
version: "4" # Please increment with each pull request
jellyfin_version: "10.3.0" # The earliest binary-compatible version
owner: "jellyfin"
nicename: "Auto Organize"
Expand Down

0 comments on commit f8e1bbc

Please sign in to comment.