Compare commits

...

4 Commits

Author SHA1 Message Date
syuilo 55368c2c38 10.78.1 2019-01-21 14:47:20 +09:00
syuilo aa020eedc3 [Client] Fix bug 2019-01-21 14:45:57 +09:00
syuilo e0874069bd [Server] リプライをタイムラインに流す以前の仕様に差し戻し
Resolve #3941
2019-01-21 14:44:49 +09:00
syuilo 90c8568a3f Remove unused import 2019-01-21 13:45:58 +09:00
5 changed files with 10 additions and 12 deletions
+5
View File
@@ -1,6 +1,11 @@
ChangeLog ChangeLog
========= =========
10.78.1
----------
* 「関係のない返信がタイムラインに流れる問題を修正」を取り消し
* デザインの修正
10.78.0 10.78.0
---------- ----------
* 他のインスタンスからアンケートに投票できるように * 他のインスタンスからアンケートに投票できるように
+2 -2
View File
@@ -1,8 +1,8 @@
{ {
"name": "misskey", "name": "misskey",
"author": "syuilo <i@syuilo.com>", "author": "syuilo <i@syuilo.com>",
"version": "10.78.0", "version": "10.78.1",
"clientVersion": "2.0.13640", "clientVersion": "2.0.13644",
"codename": "nighthike", "codename": "nighthike",
"main": "./built/index.js", "main": "./built/index.js",
"private": true, "private": true,
@@ -375,7 +375,7 @@ main
max-width 600px max-width 600px
width 100% width 100%
> .signin-as > .signed-in-as
margin 16px margin 16px
padding 16px padding 16px
text-align center text-align center
+2 -8
View File
@@ -383,17 +383,11 @@ async function publish(user: IUser, note: INote, noteObj: any, reply: INote, ren
// Publish note to local and hybrid timeline stream // Publish note to local and hybrid timeline stream
if (note.visibility != 'home') { if (note.visibility != 'home') {
// Ignore if it is a reply publishLocalTimelineStream(noteObj);
if (note.replyId == null) {
publishLocalTimelineStream(noteObj);
}
} }
if (note.visibility == 'public') { if (note.visibility == 'public') {
// Ignore if it is a reply publishHybridTimelineStream(null, noteObj);
if (note.replyId == null) {
publishHybridTimelineStream(null, noteObj);
}
} else { } else {
// Publish event to myself's stream // Publish event to myself's stream
publishHybridTimelineStream(note.userId, noteObj); publishHybridTimelineStream(note.userId, noteObj);
-1
View File
@@ -4,7 +4,6 @@ import Watching from '../../../models/note-watching';
import watch from '../../../services/note/watch'; import watch from '../../../services/note/watch';
import { publishNoteStream } from '../../../stream'; import { publishNoteStream } from '../../../stream';
import notify from '../../../notify'; import notify from '../../../notify';
import createNote from '../../../services/note/create';
import { isLocalUser, IUser } from '../../../models/user'; import { isLocalUser, IUser } from '../../../models/user';
export default (user: IUser, note: INote, choice: number) => new Promise(async (res, rej) => { export default (user: IUser, note: INote, choice: number) => new Promise(async (res, rej) => {