diff options
| author | Fuwn <[email protected]> | 2021-07-17 19:40:23 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-07-17 19:40:23 +0000 |
| commit | 6b7fd2b0f7d9f87bbfc319bd920066c62e1ead2d (patch) | |
| tree | 507b685e10b3d48cd1f2fe6df07737e01df0dcf3 /content.go | |
| parent | fix(handler): tech blog route (diff) | |
| download | space-6b7fd2b0f7d9f87bbfc319bd920066c62e1ead2d.tar.xz space-6b7fd2b0f7d9f87bbfc319bd920066c62e1ead2d.zip | |
fix(content): file reading error message
Diffstat (limited to 'content.go')
| -rw-r--r-- | content.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -9,8 +9,7 @@ func GetContent(file string) string { if err != nil { return `# ERROR READING FILE -I seem to be having some trouble reading the contents of the "` + file + `" file... Try refreshing the page and if the problem persists, contact Fuwn! (Contact information available at /contact) -` +I seem to be having some trouble reading the contents of the "` + file + `" file... Try refreshing the page and if the problem persists, contact Fuwn!` } return string(contents) |