Skip to content

Commit

Permalink
Merge pull request #663 from couchbase/feature/issue_661_docid
Browse files Browse the repository at this point in the history
Change docid prefix
  • Loading branch information
pasin committed Apr 15, 2015
2 parents 4cf8324 + 611dca4 commit 25f98a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/CBLMisc.m
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ BOOL CBLWithStringBytes(UU NSString* str, void (^block)(const char*, size_t)) {
[uuid replaceOccurrencesOfString: @"+" withString: @"-" options: 0 range: NSMakeRange(0, 22)];
// prefix a '!' to make it more clear where this string came from and prevent having a leading
// '_' character:
[uuid insertString: @"!" atIndex: 0];
[uuid insertString: @"-" atIndex: 0];
return uuid;
}

Expand Down

0 comments on commit 25f98a7

Please sign in to comment.