Skip to content
Snippets Groups Projects
Commit c067b785 authored by Aidan's avatar Aidan
Browse files

Use "del" instead of "delete" for batch deletion in MobileLevelImpl.mm

parent d0d41311
No related branches found
No related tags found
No related merge requests found
......@@ -197,7 +197,7 @@ NSDictionary * EMPTY_SUCCESS = nil;
if ([type isEqualToString:@"put"]) {
batch.Put(decoded_key, decoded_value);
} else if ([type isEqualToString:@"delete"]) {
} else if ([type isEqualToString:@"del"]) {
batch.Delete(decoded_key);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment