Skip to content

Commit

Permalink
Remove unused key/value
Browse files Browse the repository at this point in the history
  • Loading branch information
BPerlakiH committed Jun 4, 2024
1 parent c673087 commit 8b40d6d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Model/ZimFileService/ZimFileService.mm
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,7 @@ - (NSDictionary *)getContent:(NSUUID *)zimFileID contentPath:(NSString *)content
return @{
@"data": [NSData dataWithBytes: blob.data() length:blob.size()],
@"start": [NSNumber numberWithUnsignedLongLong:start],
@"end": [NSNumber numberWithUnsignedLongLong:start + blob.size() - 1],
@"size": [NSNumber numberWithUnsignedLongLong:item.getSize()]
@"end": [NSNumber numberWithUnsignedLongLong:start + blob.size() - 1]
};
} catch (std::exception) {
return nil;
Expand Down

0 comments on commit 8b40d6d

Please sign in to comment.