From 2631e136cdf79a0aac23702ab8db3fd94c7dc9a6 Mon Sep 17 00:00:00 2001 From: ViRGEdx Date: Fri, 12 Dec 2025 23:02:31 +0000 Subject: [PATCH] Update OF DL/Entities/Post/SinglePost.cs Changed post IDs from int (Int32) to long (Int64) as OF post IDs now exceed the 32-bit Integer limit --- OF DL/Entities/Post/SinglePost.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OF DL/Entities/Post/SinglePost.cs b/OF DL/Entities/Post/SinglePost.cs index f38795f..830e232 100644 --- a/OF DL/Entities/Post/SinglePost.cs +++ b/OF DL/Entities/Post/SinglePost.cs @@ -12,7 +12,7 @@ namespace OF_DL.Entities.Post public class SinglePost { public string responseType { get; set; } - public int id { get; set; } + public long id { get; set; } public DateTime postedAt { get; set; } public string postedAtPrecise { get; set; } public object expiredAt { get; set; }