Skip to content

Commit

Permalink
Reply function in the backend.
Browse files Browse the repository at this point in the history
  • Loading branch information
WeepingDogel committed Jan 6, 2023
1 parent 150b0df commit 9100b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flaskr/remark.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def SendComment():
User = session['username']
postUUID = request.form['postUUID']
ReplyTo = request.form['ReplyTo']
ReplyToUser = request.form['ReplyToUser']
ReplyToUser = request.form['ReplyToUser'] + " | " + request.form['ReplyToDate']
Content = request.form['ContentOfComments']
remarkUUID = str(uuid.uuid4())
Date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
Expand Down

0 comments on commit 9100b92

Please sign in to comment.