johnste / finicky

A macOS app for customizing which browser to start
MIT License
3.67k stars 136 forks source link

Fix call to NSLog when logging #329

Open sergei-dyshel opened 3 months ago

sergei-dyshel commented 3 months ago

Calling NSLog(message!) will interpret message as format string (see docs), causing errors and even segfault in some edge cases. Instead, use proper format string and message as argument.

Fixes https://github.com/johnste/finicky/issues/328.