mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
771 B
Matlab
39 lines
771 B
Matlab
8 years ago
|
//
|
||
7 years ago
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
8 years ago
|
//
|
||
|
|
||
|
#import "TSUnreadIndicatorInteraction.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
7 years ago
|
#pragma clang diagnostic push
|
||
|
#pragma clang diagnostic ignored "-Wdeprecated-implementations"
|
||
8 years ago
|
@implementation TSUnreadIndicatorInteraction
|
||
7 years ago
|
#pragma clang diagnostic pop
|
||
8 years ago
|
|
||
|
- (instancetype)initWithCoder:(NSCoder *)coder
|
||
|
{
|
||
|
return [super initWithCoder:coder];
|
||
|
}
|
||
|
|
||
8 years ago
|
- (BOOL)shouldUseReceiptDateForSorting
|
||
8 years ago
|
{
|
||
8 years ago
|
// Use the timestamp, not the "received at" timestamp to sort,
|
||
|
// since we're creating these interactions after the fact and back-dating them.
|
||
|
return NO;
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
- (BOOL)isDynamicInteraction
|
||
|
{
|
||
|
return YES;
|
||
|
}
|
||
|
|
||
8 years ago
|
- (OWSInteractionType)interactionType
|
||
|
{
|
||
7 years ago
|
return OWSInteractionType_Unknown;
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|