Skip to content

Commit

Permalink
モバイルユーザーページの画像が表示されなくなっていたのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
mei23 committed May 6, 2021
1 parent e6ab88c commit 7527fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/app/mobile/views/pages/user/home.photos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default Vue.extend({
limit: 9,
}).then(notes => {
for (const note of notes) {
for (const media of note.media) {
for (const media of note.files) {
if (this.images.length < 9) {
this.images.push({
note,
Expand Down

0 comments on commit 7527fac

Please sign in to comment.