|
@@ -136,7 +136,7 @@ namespace Discord.WebSocket |
|
|
/// <inheritdoc /> |
|
|
/// <inheritdoc /> |
|
|
public string BannerUrl => CDN.GetGuildBannerUrl(Id, BannerId); |
|
|
public string BannerUrl => CDN.GetGuildBannerUrl(Id, BannerId); |
|
|
/// <summary> Indicates whether the client has all the members downloaded to the local guild cache. </summary> |
|
|
/// <summary> Indicates whether the client has all the members downloaded to the local guild cache. </summary> |
|
|
public bool HasAllMembers => MemberCount == DownloadedMemberCount;// _downloaderPromise.Task.IsCompleted; |
|
|
|
|
|
|
|
|
public bool HasAllMembers => MemberCount <= DownloadedMemberCount;// _downloaderPromise.Task.IsCompleted; |
|
|
/// <summary> Indicates whether the guild cache is synced to this guild. </summary> |
|
|
/// <summary> Indicates whether the guild cache is synced to this guild. </summary> |
|
|
public bool IsSynced => _syncPromise.Task.IsCompleted; |
|
|
public bool IsSynced => _syncPromise.Task.IsCompleted; |
|
|
public Task SyncPromise => _syncPromise.Task; |
|
|
public Task SyncPromise => _syncPromise.Task; |
|
|