Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

fix-518 store to VIN shorter message if parsing failed #522

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix-518 store to VIN shorter message if parsing failed
  • Loading branch information
PiDiBi committed May 3, 2016

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 5d55c704b0e124c66edb1093f4e152e2d34188fc
2 changes: 1 addition & 1 deletion src/OBDLibrary/ObdShare/ObdUtil.cs
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ public static string ParseVINMsg(string result) //VIN
}
catch (Exception exp)
{
return exp.Message;
return "PARSING FAILED";
}
}