[Fix #869] Rename safari_plugins is_native

This commit is contained in:
Teddy Reed 2015-03-17 11:28:37 -07:00
parent 10f57c6602
commit 3da2e09a5c

View File

@ -58,9 +58,9 @@ void genSafariPlugin(const std::string& path, QueryData& results) {
}
}
if (r.at("is_native").size() == 0) {
if (r.count("native") == 0 || r.at("native").size() == 0) {
// The default case for native execution is false.
r["is_native"] = "0";
r["native"] = "0";
}
r["path"] = path;