Switch to unified view
a/src/internfile/mimehandler.cpp | b/src/internfile/mimehandler.cpp | ||
---|---|---|---|
... |
... |
||
374 | if (hs.empty()) |
374 | if (hs.empty()) |
375 | return false; |
375 | return false; |
376 | return true; |
376 | return true; |
377 | } |
377 | } |
378 | 378 | ||
379 | string RecollFilter::metadataAsString() |
||
380 | { |
||
381 | string s; |
||
382 | for (const auto& ent : m_metaData) { |
||
383 | if (ent.first == "content") |
||
384 | continue; |
||
385 | s += ent.first + "->" + ent.second + "\n"; |
||
386 | } |
||
387 | return s; |
||
388 | } |