Merge remote-tracking branch 'remotes/origin/main'
All checks were successful
Nix build / build-docker-arm (push) Successful in 9m51s
Nix build / build-docker (push) Successful in 12m43s

This commit is contained in:
Gabriel Simmer 2024-03-30 12:59:10 +00:00
commit 32b733527f
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ
2 changed files with 17 additions and 1 deletions

View file

@ -126,6 +126,10 @@ LIMIT 5
return
}
if jpi.Filename == "" {
jpi.Filename = "untitled"
}
jpis = append(jpis, jpi)
}
@ -221,6 +225,10 @@ func (s *Server) TailnetSubmitPaste(w http.ResponseWriter, r *http.Request) {
data := r.Form.Get("content")
id := uuid.NewString()
if fname == "" {
fname = "untitled"
}
q := `
INSERT INTO pastes
( id
@ -322,6 +330,10 @@ OFFSET ?1
return
}
if jpi.Filename == "" {
jpi.Filename = "untitled"
}
jpis = append(jpis, jpi)
}
@ -502,6 +514,10 @@ WHERE p.id = ?1`
return
}
if fname == "" {
fname = "untitled"
}
lang := enry.GetLanguage(fname, []byte(data))
var rawHTML *template.HTML

View file

@ -1,6 +1,6 @@
{{template "header" .}}
<div class="prose">
<p>Hello! You have connceted to a private pastebin run by a Tailscale user.</p>
<p>Hello! You have connected to a private pastebin run by a Tailscale user.</p>
<p>If this is your tailnet and you are not expecting to see this page, please connect to your tailnet and try your query again.</p>
</div>