Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Commit

Permalink
Fix bug when streaming files with spaces in path
Browse files Browse the repository at this point in the history
Temp removal of footer
  • Loading branch information
andrewiankidd committed Oct 14, 2016
1 parent 23a0eb3 commit 6a02fce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rcloneExplorer/rcloneExplorer.Core.ExploreHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public void streamMediaToolStripMenuItem_Click(object sender, EventArgs e)
if (storedFilesizeHuman != "<dir>" && storedFilesizeHuman != "<up>")
{
//we're on the honor system for filetypes
Process.Start("cmd.exe", "/c rclone.exe cat " + iniSettings.Read("rcloneRemote") + ":\"" + storedFilepath + "\" | ffplay -window_title " + storedFilepath + " -");
Process.Start("cmd.exe", "/c rclone.exe cat " + iniSettings.Read("rcloneRemote") + ":\"" + storedFilepath + "\" | ffplay -window_title " + "\"" + storedFilepath + "\"" + " -");
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion rcloneExplorer/rcloneExplorer.Core.Initialization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void initRcloneProcess()
//populate the listview with results
exploreHandler.populatelstExplorer(iniSettings.Read("rcloneRemote") + ":");
//show total filesize in footer
lblFooter.Text = "Total Filesize:" + miscContainer.BytesToString(rcloneExplorer.totalFilesize).ToString();
//lblFooter.Text = "Total Filesize:" + miscContainer.BytesToString(rcloneExplorer.totalFilesize).ToString();
//mark as loaded/ready (close splashscreen)
rcloneExplorer.loaded = true;
//create a timer which can monitor progress periodically
Expand Down

0 comments on commit 6a02fce

Please sign in to comment.