mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 16:04:06 +00:00
Merge daf2e81ae3
into fbec70e41a
This commit is contained in:
commit
c04336fbfa
|
@ -538,14 +538,22 @@ void DictServerWordSearchRequest::readMatchData( QByteArray & reply )
|
|||
if ( word.endsWith( '\"' ) ) {
|
||||
word.chop( 1 );
|
||||
}
|
||||
if ( word[ 0 ] == '\"' ) {
|
||||
if ( word.startsWith( '\"' ) ) {
|
||||
word = word.mid( 1 );
|
||||
}
|
||||
|
||||
this->addMatchedWord( word );
|
||||
if ( !word.isEmpty() ) {
|
||||
this->addMatchedWord( word );
|
||||
}
|
||||
}
|
||||
|
||||
reply = this->dictImpl->socket.readLine();
|
||||
constexpr int halfSecond = 500;
|
||||
if ( this->dictImpl->socket.waitForReadyRead( halfSecond ) ) {
|
||||
reply = this->dictImpl->socket.readLine();
|
||||
}
|
||||
else {
|
||||
return;
|
||||
}
|
||||
|
||||
} while ( true );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue