|
a/src/internfile/internfile.cpp |
|
b/src/internfile/internfile.cpp |
|
... |
|
... |
252 |
|
252 |
|
253 |
// Look for appropriate handler (might still return empty)
|
253 |
// Look for appropriate handler (might still return empty)
|
254 |
m_mimetype = l_mime;
|
254 |
m_mimetype = l_mime;
|
255 |
Dijon::Filter *df = getMimeHandler(l_mime, m_cfg, !m_forPreview);
|
255 |
Dijon::Filter *df = getMimeHandler(l_mime, m_cfg, !m_forPreview);
|
256 |
|
256 |
|
257 |
if (!df) {
|
257 |
if (!df or df->is_unknown()) {
|
258 |
// No handler for this type, for now :( if indexallfilenames
|
258 |
// No real handler for this type, for now :(
|
259 |
// is set in the config, this normally wont happen (we get mh_unknown)
|
|
|
260 |
LOGINFO(("FileInterner:: ignored: [%s] mime [%s]\n",
|
259 |
LOGINFO(("FileInterner:: ignored: [%s] mime [%s]\n",
|
261 |
f.c_str(), l_mime.c_str()));
|
260 |
f.c_str(), l_mime.c_str()));
|
262 |
return;
|
261 |
return;
|
263 |
}
|
262 |
}
|
264 |
df->set_property(Dijon::Filter::OPERATING_MODE,
|
263 |
df->set_property(Dijon::Filter::OPERATING_MODE,
|