This commit is contained in:
syuilo 2019-04-15 12:04:23 +09:00
parent fee0437493
commit b357afa30a
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
4 changed files with 0 additions and 4 deletions

View file

@ -118,7 +118,6 @@ export default Vue.extend({
fileType: image,
excludeNsfw: !this.$store.state.device.alwaysShowNsfw,
limit: 9,
untilDate: new Date().getTime() + 1000 * 86400 * 365
}).then(notes => {
for (const note of notes) {
for (const file of note.files) {

View file

@ -46,7 +46,6 @@ export default Vue.extend({
fileType: image,
excludeNsfw: !this.$store.state.device.alwaysShowNsfw,
limit: 9,
untilDate: new Date().getTime() + 1000 * 86400 * 365
}).then(notes => {
for (const note of notes) {
for (const file of note.files) {

View file

@ -23,7 +23,6 @@ export default Vue.extend({
mounted() {
this.$root.api('users/notes', {
userId: this.user.id,
untilDate: new Date().getTime() + 1000 * 86400 * 365
}).then(notes => {
this.notes = notes;
this.fetching = false;

View file

@ -37,7 +37,6 @@ export default Vue.extend({
fileType: image,
excludeNsfw: !this.$store.state.device.alwaysShowNsfw,
limit: 9,
untilDate: new Date().getTime() + 1000 * 86400 * 365
}).then(notes => {
for (const note of notes) {
for (const file of note.files) {