浏览代码

fix 500 on bad HTTP Host

version-14
Pratik Vyas 11 年前
父节点
当前提交
afc0430f02
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      frappe/app.py

+ 1
- 1
frappe/app.py 查看文件

@@ -96,7 +96,7 @@ def init_site(request):
site = _site or request.headers.get('X-Frappe-Site-Name') or get_site_name(request.host)
frappe.init(site=site, sites_path=_sites_path)
if not frappe.local.conf:
if not (frappe.local.conf and frappe.local.conf.db_name):
# site does not exist
raise NotFound


正在加载...
取消
保存