WIP: Update SinglePost.id to use Int64 instead of Int32 #93
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "ViRGEdx/OF-DL:Int64-Post-ID"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
#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) tolong(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.
Pull request closed