fix: return 1 or 0 instead of boolean for is_fc_site boot data (#31753)
This commit is contained in:
parent
ac0def40c2
commit
666f8da3dc
1 changed files with 1 additions and 1 deletions
|
|
@ -188,7 +188,7 @@ def get_boot_data():
|
|||
},
|
||||
"assets_json": get_assets_json(),
|
||||
"sitename": frappe.local.site,
|
||||
"is_fc_site": is_fc_site(),
|
||||
"is_fc_site": 1 if is_fc_site() else 0,
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue