(search) Fix missing getter for proto

This commit is contained in:
Viktor Lofgren 2024-11-18 21:05:22 +01:00
parent 70bc8831f5
commit 6a3079a167

View File

@ -242,4 +242,8 @@ public class EdgeUrl implements Serializable {
return this.domain;
}
public String getProto() {
return this.proto;
}
}