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 <maddock.evan@vivaldi.net>
  • Loading branch information
EbonJaeger authored and JoshStrobl committed Jan 10, 2024
1 parent b106375 commit fc3e00d
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 fc3e00d

Please sign in to comment.