Skip to content

Commit

Permalink
Removed userName arg from public method
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-Webster committed Oct 10, 2023
1 parent 08fde9e commit f608471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/Temp.js
Original file line number Diff line number Diff line change
Expand Up @@ -6460,8 +6460,8 @@ class TempController {
return await this.#searchforpollposts(userId, pubId, previousPostId)
}

static pollpostcomment = async (userId, comment, userName, postId) => {
return await this.#pollpostcomment(userId, comment, userName, postId)
static pollpostcomment = async (userId, comment, postId) => {
return await this.#pollpostcomment(userId, comment, postId)
}

static pollpostcommentreply = async (userId, comment, userName, postId, commentId) => {
Expand Down

0 comments on commit f608471

Please sign in to comment.