From f2037e9e39ba47338036a13b1766267368f8896f Mon Sep 17 00:00:00 2001 From: sim0n00ps Date: Sat, 28 Oct 2023 21:49:58 +0100 Subject: [PATCH] Fix tipsAmountRaw error --- OF DL/Entities/Post/SinglePost.cs | 2 +- OF DL/Entities/Streams/Streams.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/OF DL/Entities/Post/SinglePost.cs b/OF DL/Entities/Post/SinglePost.cs index 87a6315..eb21de4 100644 --- a/OF DL/Entities/Post/SinglePost.cs +++ b/OF DL/Entities/Post/SinglePost.cs @@ -44,7 +44,7 @@ public class SinglePost public List linkedUsers { get; set; } public List linkedPosts { get; set; } public string tipsAmount { get; set; } - public int tipsAmountRaw { get; set; } + public string tipsAmountRaw { get; set; } public List media { get; set; } public bool canViewMedia { get; set; } public List preview { get; set; } diff --git a/OF DL/Entities/Streams/Streams.cs b/OF DL/Entities/Streams/Streams.cs index afa6577..0c287f6 100644 --- a/OF DL/Entities/Streams/Streams.cs +++ b/OF DL/Entities/Streams/Streams.cs @@ -81,7 +81,7 @@ public class List public List linkedUsers { get; set; } public List linkedPosts { get; set; } public string tipsAmount { get; set; } - public int tipsAmountRaw { get; set; } + public string tipsAmountRaw { get; set; } public List media { get; set; } public bool canViewMedia { get; set; } public List preview { get; set; }