increase to ttl of 14 days for everything except TypingMessages
parent
a26c5da6cb
commit
8444c7cbfc
@ -1,11 +1,14 @@
|
||||
import { Message } from '.';
|
||||
import { SignalService } from '../../../protobuf';
|
||||
import { TTL_DEFAULT } from '../../constants';
|
||||
|
||||
export abstract class ContentMessage extends Message {
|
||||
public plainTextBuffer(): Uint8Array {
|
||||
return SignalService.Content.encode(this.contentProto()).finish();
|
||||
}
|
||||
|
||||
public abstract ttl(): number;
|
||||
public ttl(): number {
|
||||
return TTL_DEFAULT.TTL_MAX;
|
||||
}
|
||||
public abstract contentProto(): SignalService.Content;
|
||||
}
|
||||
|
Loading…
Reference in New Issue