fix: account for invited channels

This commit is contained in:
Anna 2022-07-14 13:41:21 -04:00
parent e8e9206f10
commit 2026a33ff6
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

@ -524,7 +524,7 @@ internal class PluginUi : IDisposable {
ImGui.EndPopup();
}
if (this.Plugin.Client.Channels.Count == 0) {
if (this.Plugin.Client.Channels.Count == 0 && this.Plugin.Client.InvitedChannels.Count == 0) {
ImGui.TextUnformatted("You aren't in any linkshells yet. Try creating or joining one first.");
goto AfterTable;
}