From cf3d4e030fe5102107b8730b29aa38f5e738e74b Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 13 Dec 2023 16:01:30 +0100 Subject: [PATCH] Fix unimplemented find icon fallback function --- profile/icons/find_default.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile/icons/find_default.go b/profile/icons/find_default.go index 782824e1..489b70a5 100644 --- a/profile/icons/find_default.go +++ b/profile/icons/find_default.go @@ -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 }