Skip to content

Commit 7bd7cba

Browse files
committed
chore: Lower MSRV
1 parent 8ac3917 commit 7bd7cba

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Lower MSRV back to 1.88 by @PolyMeilex in https://github.com/PolyMeilex/rfd/pull/303
6+
57
## 0.17.1
68

79
- 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ fn parse_response(msg: &Message) -> Option<Vec<CString>> {
176176
};
177177

178178
entry_iter.next();
179-
if key == c"uris" {
179+
if key.as_c_str() == c"uris" {
180180
if entry_iter.get_arg_type() == ffi::DBUS_TYPE_VARIANT {
181181
let mut var_iter = entry_iter.iter_recurse();
182182
return Some(var_iter.get_string_array());

0 commit comments

Comments
 (0)