Compare commits
No commits in common. "4f3229e436d62f755bad3ff5764db55a98556365" and "c38829a1b2045689d9b0d71bf31aab7c28b4e2c3" have entirely different histories.
4f3229e436
...
c38829a1b2
3 changed files with 2 additions and 5 deletions
|
@ -5,9 +5,6 @@ public class Account : ASObject
|
|||
[JsonPropertyName("bot")]
|
||||
public bool Bot { get; set; }
|
||||
|
||||
[JsonPropertyName("created_at")]
|
||||
public DateTimeOffset CreatedAt { get; set; }
|
||||
|
||||
[JsonPropertyName("display_name")]
|
||||
public string DisplayName { get; set; } = null!;
|
||||
|
||||
|
|
|
@ -523,7 +523,7 @@ public class Pleroma
|
|||
case Timeline.Bubble:
|
||||
timelineName = "bubble";
|
||||
break;
|
||||
case Timeline.All:
|
||||
case Timeline.Public:
|
||||
timelineName = "public";
|
||||
break;
|
||||
|
||||
|
|
|
@ -28,5 +28,5 @@ public enum Timeline
|
|||
/// <summary>
|
||||
/// All statuses visible to the instance.
|
||||
/// </summary>
|
||||
All,
|
||||
Public,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue