Skip to content

Commit 642f371

Browse files
committed
Fix indentation
1 parent 57c7e8b commit 642f371

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

echo/src/database/pastes.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,10 @@ impl File {
159159
) -> Result<Self> {
160160
let result = sqlx::query(
161161
"
162-
INSERT INTO files (paste_id, name, content)
163-
VALUES ($1, $2, $3)
164-
RETURNING id, name, content, lines, characters
165-
",
162+
INSERT INTO files (paste_id, name, content)
163+
VALUES ($1, $2, $3)
164+
RETURNING id, name, content, lines, characters
165+
",
166166
)
167167
.bind(paste_id)
168168
.bind(file.name().or(Some("unknown")))

0 commit comments

Comments
 (0)