flask-chat-app
flask-chat-app copied to clipboard
you are behaveing current_user.is_authenticated as a method but its not a method
current_user.is_authenticated() throwing error `TypeError: 'bool' object is not callable. (Line:23)
you have to use it in this way :
current_user.is_authenticated
https://stackoverflow.com/questions/32983133/is-authenticated-raises-typeerror-typeerror-bool-object-is-not-callable
i am working on this issue...