Fix error on paginate timeout when missing permissions

This commit is contained in:
spiral 2021-04-26 03:44:02 +01:00
parent 752cd5dbfd
commit e6bfc6c374
No known key found for this signature in database
GPG Key ID: A6059F0CA0E1BD31

View File

@ -160,6 +160,10 @@ namespace PluralKit.Bot {
}
// If we get a "NotFound" error, the message has been deleted and thus not our problem
catch (NotFoundException) { }
// If we get an "Unauthorized" error, we don't have permissions to remove our reaction
// which means we probably didn't add it in the first place, or permissions changed since then
// either way, nothing to do here
catch (UnauthorizedException) { }
}
public static async Task<T> Choose<T>(this Context ctx, string description, IList<T> items, Func<T, string> display = null)