You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 21, 2025. It is now read-only.
"SELECT {} FROM extensions JOIN authors ON extensions.author_id = authors.id WHERE extensions.id = $1 AND NOT extensions.hidden AND NOT extensions.pending",
220
+
r#"
221
+
SELECT {}
222
+
FROM extensions
223
+
JOIN authors ON extensions.author_id = authors.id
224
+
WHERE
225
+
extensions.id = $1
226
+
AND NOT extensions.hidden
227
+
AND NOT extensions.pending
228
+
"#,
214
229
Self::columns()
215
230
))
216
231
.bind(id)
@@ -226,7 +241,15 @@ impl Extension {
226
241
identifier:&str,
227
242
) -> Option<Self>{
228
243
let row = sqlx::query(&format!(
229
-
"SELECT {} FROM extensions JOIN authors ON extensions.author_id = authors.id WHERE extensions.identifier = $1 AND NOT extensions.hidden AND NOT extensions.pending",
0 commit comments