WIP
Some checks failed
PostmarketOS Build / Prepare (push) Successful in 6s
PostmarketOS Build / Build for aarch64 (push) Failing after 29s
PostmarketOS Build / Build for x86_64 (push) Failing after 10s

Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org>
This commit is contained in:
Vasiliy Doylov 2025-06-22 01:34:05 +03:00
parent 28438c5ea4
commit 645b53f71e
Signed by: NekoCWD
GPG key ID: B7BE22D44474A582
2 changed files with 1 additions and 3 deletions

View file

@ -28,6 +28,6 @@ class Singularity.Ui.OutboundRow : Gtk.Box {
}
public void set_outbound(Outbound.Outbound outbound) {
schema.label = outbound.type_name;
descr.label = outbound.name;
// descr.label = outbound.name;
}
}

View file

@ -22,7 +22,6 @@ class Singularity.Outbound.Outbound : Object, Json.Serializable {
// We can't use name `type` in vala
public string type_name { get; construct set; default = ""; }
public string tag { get; set; default = "proxy"; }
public string name; // Not a property
public static Outbound parse_uri (string profile) throws UriError, ParseError {
Uri uri = null;
@ -131,7 +130,6 @@ class Singularity.Outbound.Outbound : Object, Json.Serializable {
warning ("Unknown scheme %s", scheme);
break;
}
outbound.name = name;
return outbound;
}
}