Browse Source

Hide "Unable to load repository url" message when repository fetching is cancelled.

8.0
Alex Shvartzkop 10 months ago
parent
commit
020376937e
  1. 5
      kicad/pcm/pcm.cpp

5
kicad/pcm/pcm.cpp

@ -263,12 +263,7 @@ bool PLUGIN_CONTENT_MANAGER::FetchRepository( const wxString& aUrl, PCM_REPOSITO
aReporter->SetTitle( _( "Fetching repository" ) );
if( !DownloadToStream( aUrl, &repository_stream, aReporter, 20480 ) )
{
if( m_dialog )
wxLogError( _( "Unable to load repository url" ) );
return false;
}
nlohmann::json repository_json;

Loading…
Cancel
Save