abouttreesummaryrefslogcommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig
index 7583d8d..bf68da0 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -903,7 +903,7 @@ const GET = struct {
try self.res.write("<br />", .{});
}
}
- pub fn @"/list/"(self: Self, args: struct { list_id: PostListList.Index }) !void {
+ pub fn @"/list/"(self: Self, args: struct { list_id: PostList.Index }) !void {
try write_posts(self.res, self.txn, self.logged_in, PostList{ .idx = args.list_id });
}
pub fn @"/lists"(self: Self) !void {