diff --git a/src/Discord.Net.WebSocket/Entities/Invites/SocketInvite.cs b/src/Discord.Net.WebSocket/Entities/Invites/SocketInvite.cs index 902f13935..93c13ded9 100644 --- a/src/Discord.Net.WebSocket/Entities/Invites/SocketInvite.cs +++ b/src/Discord.Net.WebSocket/Entities/Invites/SocketInvite.cs @@ -48,8 +48,8 @@ namespace Discord.WebSocket int? IInvite.PresenceCount => throw new NotImplementedException(); /// int? IInvite.MemberCount => throw new NotImplementedException(); - /// - bool IInviteMetadata.IsRevoked => throw new NotImplementedException(); + [Obsolete("This will always return false. If an invite is revoked, it will not be found and the invite will be null.")] + bool IInviteMetadata.IsRevoked => false; /// public bool IsTemporary { get; private set; } /// @@ -138,6 +138,8 @@ namespace Discord.WebSocket /// IChannel IInvite.Channel => Channel; /// - IUser IInviteMetadata.Inviter => Inviter; + IUser IInvite.Inviter => Inviter; + /// + IUser IInvite.TargetUser => TargetUser; } }