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

View File

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

View File

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