1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:28:11 +00:00

LibWeb: Mark JS::Promise* return value for digest() with JS::NNGCPtr

This commit is contained in:
Kenneth Myhra 2023-02-24 12:18:43 +01:00 committed by Linus Groh
parent f783af05ed
commit fa1ba7fadf
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ JS::ThrowCompletionOr<void> SubtleCrypto::initialize(JS::Realm& realm)
}
// https://w3c.github.io/webcrypto/#dfn-SubtleCrypto-method-digest
JS::Promise* SubtleCrypto::digest(String const& algorithm, JS::Handle<JS::Object> const& data)
JS::NonnullGCPtr<JS::Promise> SubtleCrypto::digest(String const& algorithm, JS::Handle<JS::Object> const& data)
{
auto& realm = this->realm();