mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-02-05 02:29:46 +00:00
80203f29ad
The move from pure CoffeeScript to TypeScript has brought a few changes to the way transpiling happens. Previously, through serendipity, the way `startIPAddressUpdate` was called worked because of the binding convention pre-transpiling. However, with the move to TypeScript, this has altered and the assumption that a lack of parentheses would call the method before supplying a callback into the returned function is incorrect. The method must be specifically called first. Connects-to: #836 Change-type: patch Signed-off-by: Heds Simons <heds@balena.io>