miguelisidoro

Results 18 comments of miguelisidoro

Getting same error if not using -WebLogin in a tenant without MFA. In a tenant with MFA, I am getting the same 403 Forbidden error. What is the fix here?...

Is creating our own API Key the only solution? Is the developer team going to solve this issue to avoid this solution? I am a tech guy but would prefer...

Any news on this issue? Getting the same problem and unable to install... After consenting, it gets stuck. Tried to unzip the .pnp file and install the web part using...

Hi, The call stack trace is the following: System.NullReferenceException: Object reference not set to an instance of an object. at AngleSharp.Css.Values.CssPeriodicValue`1.get_CssText() at AngleSharp.Css.Dom.CssProperty.get_Value() at AngleSharp.Css.Dom.CssStyleDeclaration.TryCreateShorthand(String shorthandName, IEnumerable`1 serialized, List`1 usedProperties,...

Just AngleSharp, version 0.17.1. We don't use AngleSharp.Css (at least we dont have any nuget package in the project).

What do you suggest to find the reason and solve the error we are getting?

```c# public class HtmlHelper { private static HtmlSanitizer HtmlSanitizer { get { HtmlSanitizer sanitizer = new(); // Add Tags sanitizer.AllowedTags.Add("video"); sanitizer.AllowedTags.Add("source"); sanitizer.AllowedTags.Add("iframe"); // Remove Tags sanitizer.AllowedTags.Remove("acronym"); sanitizer.AllowedTags.Remove("area"); sanitizer.AllowedTags.Remove("big"); sanitizer.AllowedTags.Remove("body"); sanitizer.AllowedTags.Remove("button");...

Example: ```c# ApprovalForm requestFormPart = new ApprovalForm { Admins = new UserPickerField { UserIds = request.Admins }, Description = new HtmlField { Html = HtmlHelper.SanitizeHtml(request.Description) }, Approvers = new UserPickerField...

I created a console app and can't repro it either. I will try to reproduce the issue and get the html that triggers the error and update the fiddle.

I just tried to reproduce the original error and couldn't. Please close the issue and if we have another situation we will contact you. Thanks for the support. Have a...