Compare commits
2 commits
c38829a1b2
...
4f3229e436
Author | SHA1 | Date | |
---|---|---|---|
|
4f3229e436 | ||
|
b5dc8d2f8c |
3 changed files with 5 additions and 2 deletions
|
@ -5,6 +5,9 @@ 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.Public:
|
||||
case Timeline.All:
|
||||
timelineName = "public";
|
||||
break;
|
||||
|
||||
|
|
|
@ -28,5 +28,5 @@ public enum Timeline
|
|||
/// <summary>
|
||||
/// All statuses visible to the instance.
|
||||
/// </summary>
|
||||
Public,
|
||||
All,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue