Skip to content

Commit

Permalink
feat: upgrade the maximum event size limit
Browse files Browse the repository at this point in the history
  • Loading branch information
SKannaniOS committed Nov 7, 2024
1 parent a71ac44 commit 566647a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Classes/RSUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ +(NSArray*) extractParamFromURL: (NSURL*) deepLinkURL{
}
return queryItems != nil ? queryItems : [NSArray array];
}
unsigned int MAX_EVENT_SIZE = 32 * 1024; // 32 KB
unsigned int MAX_EVENT_SIZE = 64 * 1024; // 64 KB
unsigned int MAX_BATCH_SIZE = 500 * 1024; // 500 KB

+ (NSString *)secondsToString:(int) delay {
Expand Down

0 comments on commit 566647a

Please sign in to comment.