Followup to fddabe760f - should fix #217

pull/169/merge
Vitaliy Filippov 2018-07-28 23:04:01 +03:00
parent f516356d33
commit 98d5b92e5d
1 changed files with 1 additions and 3 deletions

View File

@ -162,9 +162,7 @@ void State::FromRemote( const Entry& e )
std::string k = e.IsDir() ? "folder" : "file";
// common checkings
if ( IsIgnore( e.Name() ) )
Log( "file %1% is ignored by griveignore", e.Name(), log::verbose ) ;
else if ( !e.IsDir() && ( fn.empty() || e.ContentSrc().empty() ) )
if ( !e.IsDir() && ( fn.empty() || e.ContentSrc().empty() ) )
Log( "%1% \"%2%\" is a google document, ignored", k, e.Name(), log::verbose ) ;
else if ( fn.find('/') != fn.npos )