This website works better with JavaScript.
Home
Explore
Help
Sign In
closed-social
/
mastodon
Watch
3
Star
0
Fork
2
Code
Issues
5
Pull Requests
0
Projects
0
Releases
3
Wiki
Activity
Browse Source
Fix gap insertion for timeline disconnection (
#7363
)
pull/4/head
Akihiko Odaki
6 years ago
committed by
Eugen Rochko
parent
c73ce7b695
commit
66359ec522
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/javascript/mastodon/reducers/timelines.js
+ 1
- 1
app/javascript/mastodon/reducers/timelines.js
View File
@ -134,7 +134,7 @@ export default function timelines(state = initialState, action) {
initialTimeline
,
map
=>
map
.
update
(
'items'
,
items
=>
items
.
first
(
)
?
items
:
items
.
unshift
(
null
)
items
=>
items
.
first
(
)
?
items
.
unshift
(
null
)
:
items
)
)
;
default
:
Write
Preview
Loading…
Cancel
Save