show supports amounts, better logic for when to show select boxes #67

Merged
lemsmyth merged 18 commits from master into master 2022-02-19 20:04:39 +01:00
Showing only changes of commit 1acd7bda01 - Show all commits

View file

@ -92,7 +92,7 @@ class LBRY_Network_Publisher
// Set License Published under // Set License Published under
$published_license = $output->value->license; $published_license = $output->value->license;
if ( isset( $published_license ) && ( $published_license !== null ) ) { if ( ( $published_license ) && ( $published_license !== null ) ) {
update_post_meta( $post->ID, '_lbry_post_published_license', $published_license ); update_post_meta( $post->ID, '_lbry_post_published_license', $published_license );
} }