From 647a75f05b17081207aab24a412dca09c661cc14 Mon Sep 17 00:00:00 2001 From: Jonas Wunderlich Date: Tue, 12 Nov 2024 18:01:42 +0100 Subject: [PATCH] fix: module indent can be negative --- edu-ws/src/response/content.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edu-ws/src/response/content.rs b/edu-ws/src/response/content.rs index b9988fd..6fbf18e 100644 --- a/edu-ws/src/response/content.rs +++ b/edu-ws/src/response/content.rs @@ -62,7 +62,7 @@ pub struct Module { #[serde(rename = "modplural")] pub type_plural: String, pub availability: Option, - pub indent: u64, + pub indent: i64, #[serde(rename = "onclick")] pub on_click: Option, #[serde(rename = "afterlink")]