Set Soup import version to 2.4

With Soup 3.0 release, there is a possibility of having both on the host. Set used version to 2.4 to avoid warnings and compatibility errors for now.
This commit is contained in:
Rafostar
2021-04-10 21:41:28 +02:00
parent 9271392397
commit b5711b145b
2 changed files with 2 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
imports.gi.versions.Gdk = '4.0';
imports.gi.versions.Gtk = '4.0';
imports.gi.versions.Soup = '2.4';
const { Gst } = imports.gi;
Gst.init(null);

View File

@@ -1,5 +1,6 @@
imports.gi.versions.Gdk = '4.0';
imports.gi.versions.Gtk = '4.0';
imports.gi.versions.Soup = '2.4';
const { AppRemote } = imports.src.appRemote;
const Misc = imports.src.misc;