Merge pull request #527 from sachaaaaa/default_active_at

set active_at to now() for public channels
pull/549/head
sachaaaaa 6 years ago committed by GitHub
commit c3ee6240c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -802,12 +802,13 @@ async function updateToLokiSchemaVersion1(currentVersion, instance) {
);
const initConversation = async data => {
const { id, type, name, friendRequestStatus } = data;
// eslint-disable-next-line camelcase
const { id, active_at, type, name, friendRequestStatus } = data;
await instance.run(
`INSERT INTO conversations (
id,
json,
active_at,
type,
members,
name,
@ -815,7 +816,7 @@ async function updateToLokiSchemaVersion1(currentVersion, instance) {
) values (
$id,
$json,
$active_at,
$type,
$members,
$name,
@ -824,7 +825,7 @@ async function updateToLokiSchemaVersion1(currentVersion, instance) {
{
$id: id,
$json: objectToJSON(data),
$active_at: active_at,
$type: type,
$members: null,
$name: name,
@ -841,6 +842,7 @@ async function updateToLokiSchemaVersion1(currentVersion, instance) {
console.log('lokiPublicServerData', lokiPublicServerData);
const baseData = {
active_at: Date.now(),
friendRequestStatus: 4, // Friends
sealedSender: 0,
sessionResetStatus: 0,

Loading…
Cancel
Save