zmister2016 / MrDoc

mrdoc,online document system developed based on python. It is suitable for individuals and small teams to manage documents, wiki, knowledge and notes. 觅思文档,适合于个人和中小型团队的在线文档、知识库系统。
https://mrdoc.pro/
GNU General Public License v3.0
2.87k stars 535 forks source link

注销异常修复 #162

Open Chivenh opened 1 year ago

Chivenh commented 1 year ago

源码: /app_admin/views.py#log_out[206]

  resp.delete_cookie(c)

应修改为:

response = JsonResponse({'status': True, 'data': resp})
for c in project_viewcode_list:
      response.delete_cookie(c)
return response