Skip to content

Commit

Permalink
Fix tipsAmountRaw error
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0n00ps committed Oct 28, 2023
1 parent 5f3fd37 commit f2037e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OF DL/Entities/Post/SinglePost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class SinglePost
public List<object> linkedUsers { get; set; }
public List<object> linkedPosts { get; set; }
public string tipsAmount { get; set; }
public int tipsAmountRaw { get; set; }
public string tipsAmountRaw { get; set; }
public List<Medium> media { get; set; }
public bool canViewMedia { get; set; }
public List<object> preview { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion OF DL/Entities/Streams/Streams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class List
public List<object> linkedUsers { get; set; }
public List<object> linkedPosts { get; set; }
public string tipsAmount { get; set; }
public int tipsAmountRaw { get; set; }
public string tipsAmountRaw { get; set; }
public List<Medium> media { get; set; }
public bool canViewMedia { get; set; }
public List<object> preview { get; set; }
Expand Down

0 comments on commit f2037e9

Please sign in to comment.