Bug 1557153 Comment 25 Edit History

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

Hmm… I was worried about it being a permission issue. Are you using a container tab by any chance?

The permissions should be loaded via https://searchfox.org/mozilla-central/rev/1dfd70469212ef2785d41827c5532c571c784227/browser/app/permissions#9-14 and that mechanism was specifically made so that permissions wouldn't be lost if the permission manager DB was cleared…

Blake, can you run the following in your Browser Console and paste/attach the result:
```js
Services.perms.getAllWithTypePrefix("uitour").map(perm => perm.principal.origin)
```
Hmm… I was worried about it being a permission issue. Are you using a container tab by any chance?

The permissions should be loaded via https://searchfox.org/mozilla-central/rev/1dfd70469212ef2785d41827c5532c571c784227/browser/app/permissions#9-14 and that mechanism was specifically made so that permissions wouldn't be lost if the permission manager DB was cleared…

Blake, can you run the following in your Browser Console and paste/attach the result:
```js
Services.perms.getAllWithTypePrefix("uitour").map(perm => perm.capability + ": " + perm.principal.origin)
```

Back to Bug 1557153 Comment 25