diff options
Diffstat (limited to 'tools/import-pidgin.vala')
-rw-r--r-- | tools/import-pidgin.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/import-pidgin.vala b/tools/import-pidgin.vala index 5387f4b..01ed9ae 100644 --- a/tools/import-pidgin.vala +++ b/tools/import-pidgin.vala @@ -145,13 +145,13 @@ public class Folks.Importers.Pidgin : Folks.Importer /* Skip the persona if creating them failed or if they don't support * groups. */ - if (persona == null || !(persona is Groupable)) + if (persona == null || !(persona is GroupDetails)) continue; try { - Groupable groupable = (Groupable) persona; - yield groupable.change_group (group_name, true); + GroupDetails group_details = (GroupDetails) persona; + yield group_details.change_group (group_name, true); } catch (GLib.Error e) { |