fix: account for invited channels

This commit is contained in:
Anna 2022-07-14 13:41:21 -04:00
parent 83af7c4062
commit 35a5388871
1 changed files with 1 additions and 1 deletions

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;
}