- Finished up with classic packets

This commit is contained in:
2025-09-20 15:18:00 +02:00
parent c1f2937117
commit fd57286809

View File

@@ -15,7 +15,7 @@ public class Classic_Domain implements Serializable {
@Getter private final Domain domain;
public Classic_Domain(String name, String topLevelDomain, String destination, String path) {
this.domain = new Domain(name + "." + topLevelDomain + "/" + (path.startsWith("/") ? path : "/" + path);
this.domain = new Domain(name + "." + topLevelDomain + "/" + (path.startsWith("/") ? path : "/" + path));
this.name = domain.getName();
this.topLevelDomain = domain.getTopLevelName();
this.destination = domain.getDestination();