Remove assert around group avatar updates.

This commit is contained in:
Matthew Chen 2018-10-24 10:05:50 -04:00
parent cc97090ef2
commit 278c61fd16

View file

@ -564,7 +564,9 @@ typedef void (^OWSLoadedThumbnailSuccess)(OWSLoadedThumbnail *loadedThumbnail);
// This message has not yet been saved or has been deleted; do nothing.
// This isn't an error per se, but these race conditions should be
// _very_ rare.
OWSFailDebug(@"Attachment not yet saved.");
//
// An exception is incoming group avatar updates which we don't ever save.
OWSLogWarn(@"Attachment not yet saved.");
}
}];