We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31848a4 commit 721f812Copy full SHA for 721f812
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "rl2-modloader-db"
3
-version = "0.1.0"
+version = "2.0.0"
4
edition = "2021"
5
6
[dependencies]
src/main.rs
@@ -185,7 +185,7 @@ async fn mod_data(
185
SELECT link, version, changelog
186
FROM versions
187
WHERE name LIKE ?1
188
- ORDER BY version
+ ORDER BY version DESC
189
", libsql::params![mod_name]).await {
190
Ok(val) => val,
191
Err(_err) => {
0 commit comments