Radish alpha
r
Radicle CI broker
Radicle
Git (anonymous pull)
Log in to clone via SSH
fix: remove unnecessary parentheses
✓ CI success Lars Wirzenius committed 8 months ago
commit 0c959144c2b7b74610a2e0fb7d550b8b6055d3d4
parent a5849ecd317dd48fc90a2101bd1179966d61967e
2 passed (2 total) View logs
1 file changed +1 -1
modified src/bin/cibtoolcmd/log.rs
@@ -228,7 +228,7 @@ impl JournalLines {
    fn parse_journal_line(line: String) -> Result<Value, LogError> {
        let jj: JournalJson = serde_json::from_str(&line)
            .map_err(|err| LogError::JsonParseJournal(line.clone(), err))?;
-
        serde_json::from_str(&jj.message).map_err(|err| (LogError::JsonParse(line, err)))
+
        serde_json::from_str(&jj.message).map_err(|err| LogError::JsonParse(line, err))
    }

    fn cib_from_file(filename: &Path) -> Result<Self, LogError> {