From 5e9d260409a0684fc2d515480d26a3609453ce48 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 26 Jul 2012 20:17:01 +0200 Subject: [PATCH] Fix log parse logic --- SparkleLib/Git/SparkleRepoGit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleLib/Git/SparkleRepoGit.cs b/SparkleLib/Git/SparkleRepoGit.cs index f41218b8..9dc7632e 100644 --- a/SparkleLib/Git/SparkleRepoGit.cs +++ b/SparkleLib/Git/SparkleRepoGit.cs @@ -608,7 +608,7 @@ namespace SparkleLib.Git { file_path = EnsureSpecialCharacters (file_path); file_path = file_path.Replace ("\\\"", "\""); - if (!type_letter.Equals ("R")) { + if (type_letter.Equals ("R")) { int tab_pos = entry_line.LastIndexOf ("\t"); file_path = entry_line.Substring (42, tab_pos - 42); string to_file_path = entry_line.Substring (tab_pos + 1);