Skip to content

Commit

Permalink
Handle AppStream.IconKind.REMOTE
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremypw committed Sep 14, 2024
1 parent d8197af commit da4aa59
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Core/Package.vala
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,10 @@ public class AppCenterCore.Package : Object {
case AppStream.IconKind.UNKNOWN:
warning ("'%s' is an unknown kind of AppStream icon", _icon.get_name ());
break;

case AppStream.IconKind.REMOTE:
warning ("'%s' is a remote AppStream icon", _icon.get_name ());
break;
}
}

Expand Down

0 comments on commit da4aa59

Please sign in to comment.