Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/agama-server/src/questions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ impl Questions {

#[zbus(property)]
fn set_interactive(&mut self, value: bool) {
if value != self.interactive() {
if value == self.interactive() {
tracing::info!("interactive value unchanged - {}", value);
return;
}
Expand Down
5 changes: 5 additions & 0 deletions rust/package/agama.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue May 13 09:28:46 UTC 2025 - Imobach Gonzalez Sosa <[email protected]>

- Fix setting the mode for questions (bsc#1242441).

-------------------------------------------------------------------
Mon May 12 12:55:40 UTC 2025 - Ladislav Slezák <[email protected]>

Expand Down
Loading