Don't record posts as yours when 'Mark Quotes of You' is disabled.

This commit is contained in:
ccd0 2015-11-18 17:31:43 -08:00
parent ab97078638
commit d2a9e49959
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
PostSuccessful =
init: ->
return unless Conf['Mark Quotes of You']
$.ready @ready
ready: ->

View File

@ -24,7 +24,7 @@ QR =
init: ->
return unless Conf['Quick Reply']
@db = new DataBoard 'yourPosts'
@db = new DataBoard 'yourPosts' if Conf['Mark Quotes of You']
@posts = []
return if g.VIEW is 'archive'
@ -791,7 +791,7 @@ QR =
threadID = +threadID or postID
isReply = threadID isnt postID
QR.db.set
QR.db?.set
boardID: g.BOARD.ID
threadID: threadID
postID: postID