diff --git a/src/enterprise/enterprise_explorer.h b/src/enterprise/enterprise_explorer.h index 4f2a48b..947eb71 100644 --- a/src/enterprise/enterprise_explorer.h +++ b/src/enterprise/enterprise_explorer.h @@ -151,7 +151,13 @@ static auto file_manager(std::ostringstream &html, assert(entry.at("type").is_string()); html << ""; if (entry.at("type").to_string() == "directory") { - html << ""; + if (entry.defines("github")) { + html << ""; + } else { + html << ""; + } } else { html << ""; }