Skip to content

Commit

Permalink
getting projectName from projectFullName
Browse files Browse the repository at this point in the history
  • Loading branch information
VitorVieiraZ committed May 23, 2024
1 parent fd1d26e commit 193b4e5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/synchronizationmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,11 @@ void SynchronizationManager::onProjectSyncProgressChanged( const QString &projec

void SynchronizationManager::onProjectCreated( const QString &projectFullName, bool result )
{
if ( !result && mSyncProcesses.contains( projectFullName ) )
QString projectName = projectFullName.section( '/', 1, 1 );

if ( !result && mSyncProcesses.contains( projectName ) )
{
mSyncProcesses.remove( projectFullName );
mSyncProcesses.remove( projectName );
}
}

Expand Down

1 comment on commit 193b4e5

@inputapp-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

iOS - version 24.5.623211 just submitted!

Please sign in to comment.