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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Lower MSRV back to 1.88 by @PolyMeilex in https://github.com/PolyMeilex/rfd/pull/303

## 0.17.1

- Fix aarch64 compile error and add CI by @oscargus in https://github.com/PolyMeilex/rfd/pull/294
Expand Down
2 changes: 1 addition & 1 deletion src/backend/xdg_desktop_portal/portal/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ fn parse_response(msg: &Message) -> Option<Vec<CString>> {
};

entry_iter.next();
if key == c"uris" {
if key.as_c_str() == c"uris" {
if entry_iter.get_arg_type() == ffi::DBUS_TYPE_VARIANT {
let mut var_iter = entry_iter.iter_recurse();
return Some(var_iter.get_string_array());
Expand Down