This was fixed by re-installing SQL Safe. Bonus – Here is a working restore command with move
EXEC [master].[dbo].[xp_ss_restore] @database = 'SomeDatabase', @filename = 'J:\backups\SomeDatabase.BAK', @backuptype = 'Full', @withmove = 'SomeDatabase_data "J:\sql_data\SomeDatabase_data.mdf"', @withmove = 'SomeDatabase_log "J:\sql_log\SomeDatabase_log.ldf"', @recoverymode = 'recovery', @replace = '1';