X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fcorebacklogmanager.cpp;h=d26d27878e74a0517ccf1d9324e04737e63d83fb;hb=HEAD;hp=6a61ba66be3396538dbdf0196ad7b16b01c3b4f4;hpb=097f625c4bd147f4127573ad8ab48555f9dc62d3;p=quassel.git diff --git a/src/core/corebacklogmanager.cpp b/src/core/corebacklogmanager.cpp index 6a61ba66..d26d2787 100644 --- a/src/core/corebacklogmanager.cpp +++ b/src/core/corebacklogmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2020 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -58,7 +58,7 @@ QVariantList CoreBacklogManager::requestBacklog(BufferId bufferId, MsgId first, last = oldestMessage; } - // only fetch additional messages if they continue seemlessly + // only fetch additional messages if they continue seamlessly // that is, if the list of messages is not truncated by the limit if (last == oldestMessage) { msgList = Core::requestMsgs(coreSession()->user(), bufferId, -1, last, additional); @@ -96,7 +96,7 @@ QVariantList CoreBacklogManager::requestBacklogFiltered(BufferId bufferId, MsgId last = oldestMessage; } - // only fetch additional messages if they continue seemlessly + // only fetch additional messages if they continue seamlessly // that is, if the list of messages is not truncated by the limit if (last == oldestMessage) { msgList = Core::requestMsgsFiltered(coreSession()->user(), bufferId, -1, last, additional, Message::Types{type}, Message::Flags{flags});