Skip to content
This repository has been archived by the owner on Sep 29, 2020. It is now read-only.

Commit

Permalink
Do not auto-close `'s
Browse files Browse the repository at this point in the history
  • Loading branch information
Headline committed Aug 17, 2018
1 parent f0043d5 commit 5759468
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion IRC-Relay/Helpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ public static string Unescape(string input)
slice.Append(input[j]);
}

slice.Append('`'); // append the '`' for insertion later
if (j < input.Length)
slice.Append('`'); // append the '`' for insertion later

locations.Add(i); // push the index of the first '`'
peices.Add(slice); // push the captured string
Expand Down

0 comments on commit 5759468

Please sign in to comment.