Fix unimplemented find icon fallback function

This commit is contained in:
Daniel
2023-12-13 16:01:30 +01:00
parent cd34d64ca6
commit cf3d4e030f

View File

@@ -2,9 +2,9 @@
package icons
import "github.com/safing/portmaster/profile"
import "context"
// FindIcon returns nil, nil for unsupported platforms.
func FindIcon(binName string, homeDir string) (*profile.Icon, error) {
func FindIcon(ctx context.Context, binName string, homeDir string) (*Icon, error) {
return nil, nil
}