mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-26 08:09:37 -05:00
turn force refresh back on
This commit is contained in:
parent
656bfbdfa4
commit
e02e96a65d
@ -180,7 +180,7 @@ class BackgroundTickerState extends ConsumerState<BackgroundTicker> {
|
|||||||
activeAccountInfo: activeAccountInfo,
|
activeAccountInfo: activeAccountInfo,
|
||||||
remoteIdentityPublicKey: remoteIdentityPublicKey,
|
remoteIdentityPublicKey: remoteIdentityPublicKey,
|
||||||
remoteConversationRecordKey: remoteConversationRecordKey);
|
remoteConversationRecordKey: remoteConversationRecordKey);
|
||||||
if (newMessages != null) {
|
if (newMessages != null && newMessages.isNotEmpty) {
|
||||||
final changed = await mergeLocalConversationMessages(
|
final changed = await mergeLocalConversationMessages(
|
||||||
activeAccountInfo: activeAccountInfo,
|
activeAccountInfo: activeAccountInfo,
|
||||||
localConversationRecordKey: localConversationRecordKey,
|
localConversationRecordKey: localConversationRecordKey,
|
||||||
|
@ -281,7 +281,7 @@ class DHTShortArray {
|
|||||||
|
|
||||||
/// Pull the latest or updated copy of the head record from the network
|
/// Pull the latest or updated copy of the head record from the network
|
||||||
Future<bool> _refreshHead(
|
Future<bool> _refreshHead(
|
||||||
{bool forceRefresh = false, bool onlyUpdates = false}) async {
|
{bool forceRefresh = true, bool onlyUpdates = false}) async {
|
||||||
// Get an updated head record copy if one exists
|
// Get an updated head record copy if one exists
|
||||||
final head = await _headRecord.getProtobuf(proto.DHTShortArray.fromBuffer,
|
final head = await _headRecord.getProtobuf(proto.DHTShortArray.fromBuffer,
|
||||||
forceRefresh: forceRefresh, onlyUpdates: onlyUpdates);
|
forceRefresh: forceRefresh, onlyUpdates: onlyUpdates);
|
||||||
|
Loading…
Reference in New Issue
Block a user