Bug 1880257 Comment 14 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Oh, I see what the problem is. The annotation is declared as a boolean and passed into nsICrashReporter.annotateCrashReport() as a boolean, but the implementation of that method is dumb and turns it into a string. This even triggers an assertion in debug builds because we expect that particular annotation to be a boolean and not a string. Let me see how I can fix this.
Oh, I see what the problem is. The annotation is declared as a boolean and passed into `nsICrashReporter.annotateCrashReport()` as a boolean, but the implementation of that method is dumb and turns it into a string. This even triggers an assertion in debug builds because we expect that particular annotation to be a boolean and not a string. Let me see how I can fix this.

Back to Bug 1880257 Comment 14