Fixed bug in ad posting

This commit is contained in:
Mr. Stallion 2019-06-07 16:43:22 -05:00
parent 9d92557705
commit 500693cbd0
1 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@ import { Conversation } from './interfaces';
export class AdManager {
static readonly POSTING_PERIOD = 3 * 60 * 60 * 1000;
static readonly START_VARIANCE = 2 * 60 * 1000;
static readonly POST_VARIANCE = 7 * 60 * 1000;
static readonly POST_DELAY = 1 * 60 * 1000;
static readonly START_VARIANCE = 3 * 60 * 1000;
static readonly POST_VARIANCE = 8 * 60 * 1000;
static readonly POST_DELAY = 1.5 * 60 * 1000;
private conversation: Conversation;