Dakota Brokhoff
Results
1
comments of
Dakota Brokhoff
> Try replacing this line in api.py: `return frappe.db.get_value("Installed Application",{"app_name":"frappe"},"app_version").split('.')[0]` > > ```python > frappe_version = next((item for item in frappe.utils.get_installed_apps_info() if item['app_name'] == 'frappe'), '13.0') > return frappe_version['version'].split('.')[0] >...