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>
(cherry picked from commit 1ee070a14b)
This commit is contained in:
Balló György 2023-04-21 08:02:16 +00:00 committed by Florian Müllner
parent d29fb25269
commit a05aa23110

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());
}
}