Radish alpha
r
Radicle CI broker
Radicle
Git (anonymous pull)
Log in to clone via SSH
feat: guid is not a permalink
✓ CI success Sean Borg committed 10 months ago
commit 3bb98f3f7fc592d9e2ca7f54a596adf844c1674a
parent e1a741e33a9c3a3a6778c53f43a57c156aa25bdf
1 passed (1 total) View logs
1 file changed +1 -0
modified src/pages.rs
@@ -668,6 +668,7 @@ impl PageData {
    fn rss_item_from_run(run: &Run) -> Result<Item, PageError> {
        let mut guid = Guid::default();
        guid.set_value(run.broker_run_id().to_string());
+
        guid.permalink = false; // guid permalink defaults to true as our guid is not a url set this to false

        let state = if run.state() == RunState::Finished {
            match run.result() {