aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/node.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2026-03-12 16:54:29 +0100
committermetamuffin <metamuffin@disroot.org>2026-03-12 16:54:29 +0100
commit1fd039e1da489954d4115189877d51b62b8e9d6a (patch)
tree76df48b2d6f4ca30a647e6c3c00c0b14da1cf216 /server/src/routes/node.rs
parentb23d8a2f7786119fc49bb2d531618c78344b8357 (diff)
downloadjellything-1fd039e1da489954d4115189877d51b62b8e9d6a.tar
jellything-1fd039e1da489954d4115189877d51b62b8e9d6a.tar.bz2
jellything-1fd039e1da489954d4115189877d51b62b8e9d6a.tar.zst
show tracks in table
Diffstat (limited to 'server/src/routes/node.rs')
-rw-r--r--server/src/routes/node.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/routes/node.rs b/server/src/routes/node.rs
index d8d9ba5..506d771 100644
--- a/server/src/routes/node.rs
+++ b/server/src/routes/node.rs
@@ -30,10 +30,10 @@ pub fn r_node(ri: RequestInfo<'_>, slug: &str) -> MyResult<RawHtml<String>> {
..Default::default()
})? {
let n = txn.get(row)?.unwrap();
+ nku = Some(create_nku(txn, row)?);
children = c_children(txn, row, &n)?;
credits = c_credits(txn, &n)?;
credited = c_credited(txn, row)?;
- nku = Some(create_nku(txn, row)?);
}
Ok(())
})?;