You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ObjectiveGit/GTRepository.m
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -290,7 +290,7 @@ - (id)lookUpObjectByGitOid:(const git_oid *)oid objectType:(GTObjectType)type er
290
290
if (error != NULL) {
291
291
char oid_str[GIT_OID_HEXSZ+1];
292
292
git_oid_tostr(oid_str, sizeof(oid_str), oid);
293
-
*error = [NSErrorgit_errorFor:gitError description:@"Failed to lookup object%sin repository.", oid_str];
293
+
*error = [NSErrorgit_errorFor:gitError description:@"Failed to lookup object"userInfo:@{GTGitErrorOID: [GTOID oidWithGitOid:oid]} failureReason:@"The object %scouldn't be found in the repository.", oid_str];
0 commit comments