-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Universal link handler for launcher desktop #1727
Conversation
16ee648
to
d1d64fd
Compare
@@ -26,7 +26,7 @@ import ( | |||
) | |||
|
|||
// Special Kolide Ports | |||
var portList = []int{ | |||
var PortList = []int{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Downside to this, is that it's a package var, which means it could be changed. Probably more go'y to func PortList() []int
but I'm not sure it really matters for our use case.
return | ||
} | ||
u.slogger.Log(ctx, slog.LevelWarn, | ||
"could not make universal link request", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"could not forward universal link request"
maybe?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated: 3ad09a3
Adds a handler for universal links, forwarding them to root launcher's localserver.
Requires: kolide/systray#5