albertosgz / Wordpress_BigBlueButton_plugin

BigBlueButton plugin for Wordpress https://es.wordpress.org/plugins/bbb-administration-panel/
GNU General Public License v3.0
17 stars 12 forks source link

The recordings deleted are still in the table #5

Closed albertosgz closed 7 years ago

albertosgz commented 7 years ago

in the recording list table, after deleted a recording, the row is still in the table

albertosgz commented 7 years ago

it looks like an issue in the code of the plugin, since I can't find the recording in /var/bigbluebutton/recording/raw folder according the date

albertosgz commented 7 years ago

I see what's happening.

According the source file, we are requesting for the recordings of the current rooms configured with any state, file bbb_api.php, line 223.

The description of the API of BBB is clear, according the definition of the call getRecordings. We are getting all recordings of the rooms set by the plugin, regardless their state, for example if they were deleted.

This call is only used to display the table of recordings.

So the point is, what expected behavior should it be? Do we want to display the recordings of all rooms? or only the rooms set in each WP instance? Do we want to display all of the recordings? or only the published or unpublished? Do we have to add a column with the state of the recording?

paulbelcher2 commented 7 years ago