autorunManager: Add missing await keyword

This fixes a regression introduced in commit c6861c0a3d

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2745>
This commit is contained in:
Balló György 2023-04-21 08:02:16 +00:00 committed by Marge Bot
parent f54af2639d
commit 1ee070a14b

View File

@ -102,7 +102,7 @@ var ContentTypeDiscoverer = class {
if (contentTypes.length === 0) {
const root = mount.get_root();
const hotplugSniffer = new HotplugSniffer();
[contentTypes] = hotplugSniffer.SniffURIAsync(root.get_uri());
[contentTypes] = await hotplugSniffer.SniffURIAsync(root.get_uri());
}
}