aboutsummaryrefslogtreecommitdiff
path: root/internal/route/repo/editor.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/route/repo/editor.go')
-rw-r--r--internal/route/repo/editor.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/route/repo/editor.go b/internal/route/repo/editor.go
index 8f612a98..58536f5b 100644
--- a/internal/route/repo/editor.go
+++ b/internal/route/repo/editor.go
@@ -268,7 +268,7 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) {
OldTreeName: oldTreePath,
NewTreeName: f.TreePath,
Message: message,
- Content: strings.Replace(f.Content, "\r", "", -1),
+ Content: strings.ReplaceAll(f.Content, "\r", ""),
IsNewFile: isNewFile,
}); err != nil {
log.Error("Failed to update repo file: %v", err)