@@ -861,11 +861,8 @@ export class NoteCreateService implements OnApplicationShutdown {
861861
862862 for ( const channelFollowing of channelFollowings ) {
863863 this . fanoutTimelineService . push ( `homeTimeline:${ channelFollowing . followerId } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
864- this . fanoutTimelineService . push ( `localHomeTimeline:${ channelFollowing . followerId } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
865-
866864 if ( note . fileIds . length > 0 ) {
867865 this . fanoutTimelineService . push ( `homeTimelineWithFiles:${ channelFollowing . followerId } ` , note . id , this . meta . perUserHomeTimelineCacheMax / 2 , r ) ;
868- this . fanoutTimelineService . push ( `localHomeTimelineWithFiles:${ channelFollowing . followerId } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
869866 }
870867 }
871868 } else {
@@ -904,10 +901,8 @@ export class NoteCreateService implements OnApplicationShutdown {
904901 }
905902
906903 this . fanoutTimelineService . push ( `homeTimeline:${ following . followerId } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
907- if ( user . host === null ) this . fanoutTimelineService . push ( `localHomeTimeline:${ following . followerId } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
908904 if ( note . fileIds . length > 0 ) {
909905 this . fanoutTimelineService . push ( `homeTimelineWithFiles:${ following . followerId } ` , note . id , this . meta . perUserHomeTimelineCacheMax / 2 , r ) ;
910- if ( user . host === null ) this . fanoutTimelineService . push ( `localHomeTimelineWithFiles:${ following . followerId } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
911906 }
912907 }
913908
@@ -934,10 +929,8 @@ export class NoteCreateService implements OnApplicationShutdown {
934929 if ( note . userHost == null ) {
935930 if ( note . visibility !== 'specified' || ! note . visibleUserIds . some ( v => v === user . id ) ) {
936931 this . fanoutTimelineService . push ( `homeTimeline:${ user . id } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
937- this . fanoutTimelineService . push ( `localHomeTimeline:${ user . id } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
938932 if ( note . fileIds . length > 0 ) {
939933 this . fanoutTimelineService . push ( `homeTimelineWithFiles:${ user . id } ` , note . id , this . meta . perUserHomeTimelineCacheMax / 2 , r ) ;
940- this . fanoutTimelineService . push ( `localHomeTimelineWithFiles:${ user . id } ` , note . id , this . meta . perUserHomeTimelineCacheMax , r ) ;
941934 }
942935 }
943936 }
@@ -960,13 +953,10 @@ export class NoteCreateService implements OnApplicationShutdown {
960953
961954 if ( note . visibility === 'public' && note . userHost == null ) {
962955 this . fanoutTimelineService . push ( 'localTimeline' , note . id , 1000 , r ) ;
963- this . fanoutTimelineService . push ( `localHomeTimeline:${ user . id } ` , note . id , 1000 , r ) ;
964956 if ( note . fileIds . length > 0 ) {
965957 this . fanoutTimelineService . push ( 'localTimelineWithFiles' , note . id , 500 , r ) ;
966- this . fanoutTimelineService . push ( `localHomeTimelineWithFiles:${ user . id } ` , note . id , 1000 , r ) ;
967958 }
968959 }
969-
970960 if ( note . visibility === 'public' && note . userHost !== null ) {
971961 this . fanoutTimelineService . push ( `remoteLocalTimeline:${ note . userHost } ` , note . id , 1000 , r ) ;
972962 }
0 commit comments