fixed domain null error when query is invalid and implemented new function to check for executable for url

This commit is contained in:
heyethereum
2024-08-10 16:11:13 +08:00
parent 4856417cf0
commit 080e695e5d
3 changed files with 77 additions and 17 deletions

View File

@@ -89,6 +89,10 @@ public class URLEntity {
@Column(name = "url_encoding")
private String urlEncoding = "";
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@Column(name="has_executable")
private String hasExecutable = "";
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@Column(name = "dns_error")
private String dnsError = "";