fix empty product bug

This commit is contained in:
Marvellanius 2016-05-04 15:36:54 +02:00
parent edaa04f7c9
commit 532dbda651

View file

@ -68,6 +68,9 @@ module.exports = class BuyGemsModal extends ModalView
onClickProductButton: (e) ->
@playSound 'menu-button-click'
productID = $(e.target).closest('button').val()
# Don't throw error when product is not found
if productID.length == 0
return
product = @products.findWhere { name: productID }
if application.isIPadApp