1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Fix typo in error message

Thanks to @Selena-Gomez for finding this.
This commit is contained in:
tux3 2015-04-27 02:11:50 +02:00
parent 2fed6724b2
commit f0c01a4f64
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -563,7 +563,7 @@ void Core::requestFriendship(const QString& friendAddress, const QString& messag
if (message.isEmpty())
{
emit failedToAddFriend(userId, QString(tr("You need to write a message with you request")));
emit failedToAddFriend(userId, QString(tr("You need to write a message with your request")));
}
else if (message.size() > TOX_MAX_FRIEND_REQUEST_LENGTH)
{