littlebee / git-time-machine

Atom package that allows you to travel back in commit history
MIT License
1.12k stars 36 forks source link

authorName with backslash #116

Closed sametsafak closed 6 years ago

sametsafak commented 7 years ago

I have really weird problem. My authorName is coming from server like this:

{... "authorName": "FOO\bar" ...}

Therefore, json can't be parsed.

try { return JSON.parse(encLine); } catch (error) { console.warn("failed to parse JSON " + encLine); return null; }

Now I changed my authorName to valid one (without backslash), but I can't access my old commits from time-machine.

Could you please help me about this?

Update

I check it and this problem about git-log-utils,