Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Don't log if location empty
  • Loading branch information
marcinkrzeminski committed Dec 23, 2024
commit f41e89ae4f49558abbac7e7c72bfac657026359f
4 changes: 4 additions & 0 deletions connectors/class-connector-editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@ public function get_edition_data() {
$this->edited_file = $this->get_plugin_data( $plugin_slug );
}

if ( ! $location ) {
return;
}

$this->log_changes( $location );
}

Expand Down