diff --git a/components/app.js b/components/app.js index 78ab59c..2eacfc2 100644 --- a/components/app.js +++ b/components/app.js @@ -1034,7 +1034,7 @@ export default class App extends Component { case "READ": target = msg.params[0]; let bound = msg.params[1]; - if (!client.isMyNick(msg.prefix.name) || bound === "*" || !bound.startsWith("timestamp=")) { + if (bound === "*" || !bound.startsWith("timestamp=")) { break; } let readReceipt = { time: bound.replace("timestamp=", "") };