fix duplicate
This commit is contained in:
parent
960d28363b
commit
e72e4ad29e
2 changed files with 5 additions and 9 deletions
|
@ -216,10 +216,7 @@ class Events_Manager extends Post {
|
||||||
if ( 'url' === $this->em_event->event_location_type ) {
|
if ( 'url' === $this->em_event->event_location_type ) {
|
||||||
$attachments[] = $this->get_event_link_attachment();
|
$attachments[] = $this->get_event_link_attachment();
|
||||||
}
|
}
|
||||||
return $attachments;
|
return $attachments; }
|
||||||
|
|
||||||
return $attachments;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function tries to map VS-Event categories to Mobilizon event categories.
|
* This function tries to map VS-Event categories to Mobilizon event categories.
|
||||||
|
|
|
@ -289,8 +289,7 @@ class VS_Event extends Post {
|
||||||
->set_end_time()
|
->set_end_time()
|
||||||
->set_type()
|
->set_type()
|
||||||
->set_category()
|
->set_category()
|
||||||
->set_attachments()
|
->set_attachment()
|
||||||
->set_location()
|
|
||||||
->set_comments_enabled( true )
|
->set_comments_enabled( true )
|
||||||
->set_external_participation_url( $this->get_url() )
|
->set_external_participation_url( $this->get_url() )
|
||||||
->set_status( 'CONFIRMED' )
|
->set_status( 'CONFIRMED' )
|
||||||
|
@ -298,8 +297,8 @@ class VS_Event extends Post {
|
||||||
->set_is_online( false )
|
->set_is_online( false )
|
||||||
->set_in_language( $this->get_locale() )
|
->set_in_language( $this->get_locale() )
|
||||||
->set_actor( get_rest_url_by_path( 'application' ) )
|
->set_actor( get_rest_url_by_path( 'application' ) )
|
||||||
->set_to( array( 'https://www.w3.org/ns/activitystreams#Public' ) );
|
->set_to( array( 'https://www.w3.org/ns/activitystreams#Public' ) )
|
||||||
|
->set_location();
|
||||||
return $this->ap_object;
|
return $this->ap_object;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue