diff --git a/apiserver/apiserver/api/utils_paypal.py b/apiserver/apiserver/api/utils_paypal.py index 3a8f891..f7ec131 100644 --- a/apiserver/apiserver/api/utils_paypal.py +++ b/apiserver/apiserver/api/utils_paypal.py @@ -354,7 +354,7 @@ def process_paypal_ipn(data): defaults=dict(user=user), ) - if custom_json.get('category', False) in ['Snacks', 'OnAcct', 'Donation', 'Consumables']: + if custom_json.get('category', False) in ['Snacks', 'OnAcct', 'Donation', 'Consumables', 'Purchases']: logger.info('IPN - Category matched') update_ipn(ipn, 'Accepted, category') return create_category_tx(data, member, custom_json)