mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-05-08 07:19:07 -05:00
added 5.1 and 7.1 options to add audio track
increased plugin versions to 0.6.1 fixed issue with replace original returning -11 instead of -1 fixed copy flie when on external node
This commit is contained in:
@@ -9,7 +9,7 @@ public class PlexAnalyze : PlexNode
|
||||
protected override int ExecuteActual(NodeParameters args, PlexDirectory directory, string baseUrl, string mappedPath, string accessToken)
|
||||
{
|
||||
string filename = new FileInfo(args.WorkingFile).Name;
|
||||
string mappedFile = mappedPath + (mappedPath.IndexOf("/") >= 0 ? "/" : "\\") + filename;
|
||||
string mappedFile = mappedPath + (mappedPath.IndexOf("/") >= 0 ? "/" : @"\") + filename;
|
||||
|
||||
using var httpClient = new HttpClient();
|
||||
string itemId = GetItemId(httpClient, args, baseUrl, $"library/sections/{directory.Key}/all?includeCollections=1&includeAdvanced=1", accessToken, mappedFile);
|
||||
|
||||
Reference in New Issue
Block a user