We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac3917 commit 7bd7cbaCopy full SHA for 7bd7cba
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Lower MSRV back to 1.88 by @PolyMeilex in https://github.com/PolyMeilex/rfd/pull/303
6
+
7
## 0.17.1
8
9
- Fix aarch64 compile error and add CI by @oscargus in https://github.com/PolyMeilex/rfd/pull/294
src/backend/xdg_desktop_portal/portal/mod.rs
@@ -176,7 +176,7 @@ fn parse_response(msg: &Message) -> Option<Vec<CString>> {
176
};
177
178
entry_iter.next();
179
- if key == c"uris" {
+ if key.as_c_str() == c"uris" {
180
if entry_iter.get_arg_type() == ffi::DBUS_TYPE_VARIANT {
181
let mut var_iter = entry_iter.iter_recurse();
182
return Some(var_iter.get_string_array());
0 commit comments