Skip to content

Commit

Permalink
sendto: Use the correct property when looking for changes
Browse files Browse the repository at this point in the history
Signed-off-by: Evan Maddock <[email protected]>
  • Loading branch information
EbonJaeger committed Sep 15, 2023
1 parent b1e16ef commit bd40752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dialogs/sendto/Dialog/DeviceRow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class DeviceRow : Gtk.ListBoxRow {
});

((DBusProxy) device).g_properties_changed.connect((changed, invalid) => {
var name = changed.lookup_value("Name", new VariantType("s"));
var name = changed.lookup_value("Alias", new VariantType("s"));
if (name != null) {
label.label = device.alias;
}
Expand Down

0 comments on commit bd40752

Please sign in to comment.