WIP: Update SinglePost.id to use Int64 instead of Int32 #93

Closed
ViRGEdx wants to merge 1 commits from ViRGEdx/OF-DL:Int64-Post-ID into master
First-time contributor

#92

OnlyFans post IDs have crossed the Int32 (2,147,483,647) mark, exceeding the limits of SinglePost.id and preventing the client from downloading any newer posts.

This PR changes the type of SinglePost.id from int (Int32) to long (Int64) to accommodate the larger post ID numbers.

Quick testing on this seems to fix the issue; OF-DL is able to download newer posts after the type is changed. I haven't found any other issues from this change, but I don't know the code well enough to know everywhere to look.

https://git.ofdl.tools/sim0n00ps/OF-DL/issues/92 OnlyFans post IDs have crossed the Int32 (2,147,483,647) mark, exceeding the limits of SinglePost.id and preventing the client from downloading any newer posts. This PR changes the type of SinglePost.id from `int` (Int32) to `long` (Int64) to accommodate the larger post ID numbers. Quick testing on this seems to fix the issue; OF-DL is able to download newer posts after the type is changed. I haven't found any other issues from this change, but I don't know the code well enough to know everywhere to look.
ViRGEdx added 1 commit 2025-12-12 23:08:30 +00:00
Changed post IDs from int (Int32) to long (Int64) as OF post IDs now exceed the 32-bit Integer limit
sim0n00ps closed this pull request 2025-12-13 19:30:46 +00:00

Pull request closed

Sign in to join this conversation.
No description provided.