Compare commits

...

3 Commits

Author SHA1 Message Date
64e10e9619 11.0.0-beta.4 2019-04-12 02:25:56 +09:00
b89cffe98d Fix bug 2019-04-12 02:22:22 +09:00
bd76ba702f 🎨 2019-04-12 02:15:22 +09:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
"version": "11.0.0-beta.3",
"version": "11.0.0-beta.4",
"codename": "daybreak",
"repository": {
"type": "git",

View File

@ -7,7 +7,7 @@
kind: 'light',
vars: {
primary: '#fb4e4e',
primary: '#f18570',
secondary: '#fff',
text: '#666',
},

View File

@ -143,7 +143,7 @@ export async function createPerson(uri: string, resolver?: Resolver): Promise<Us
id: genId(),
avatarId: null,
bannerId: null,
createdAt: new Date(person.published) || new Date(),
createdAt: new Date(),
lastFetchedAt: new Date(),
name: person.name,
isLocked: person.manuallyApprovesFollowers,