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 #17 from mark-monteiro/fix-issue-16
Browse files Browse the repository at this point in the history
Update NuGet Dependencies
  • Loading branch information
anthonylavado authored Dec 11, 2019
2 parents f8e1bbc + 356247b commit 8b193ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Emby.AutoOrganize/Data/SqliteExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static byte[] ToGuidBlob(this Guid guid)

public static Guid ReadGuidFromBlob(this IResultSetValue result)
{
return new Guid(result.ToBlob());
return new Guid(result.ToBlob().ToArray());
}

public static string ToDateTimeParamValue(this DateTime dateValue)
Expand Down
9 changes: 4 additions & 5 deletions Emby.AutoOrganize/Emby.AutoOrganize.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

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

<ItemGroup>
Expand Down Expand Up @@ -37,8 +37,7 @@
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.*" />
<PackageReference Include="Jellyfin.Naming" Version="10.*" />
<PackageReference Include="SQLitePCL.pretty.netstandard" Version="1.0.0" />
<PackageReference Include="System.Memory" Version="4.5.1" />
<PackageReference Include="SQLitePCL.pretty.netstandard" Version="2.0.1" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions build.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: "jellyfin-plugin-autoorganize"
guid: "70b7b43b-471b-4159-b4be-56750c795499"
version: "4" # Please increment with each pull request
jellyfin_version: "10.3.0" # The earliest binary-compatible version
version: "5" # Please increment with each pull request
jellyfin_version: "10.4.3" # The earliest binary-compatible version
owner: "jellyfin"
nicename: "Auto Organize"
description: "Automatically organize your media"
Expand Down

0 comments on commit 8b193ff

Please sign in to comment.