Add files via upload

This commit is contained in:
Keb Helion 2020-02-15 15:22:00 -05:00 committed by GitHub
parent 48a36e3597
commit fdfd39f078
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -340,7 +340,7 @@
for (index = 0; index < metadata.applications.length; index++){
lowItem = metadata.applications[index].name.toLowerCase();
if (lowItem.indexOf(search.toLowerCase()) != -1){
if (lowItem.indexOf(search.toLowerCase()) != -1 || metadata.applications[index].isActive == true){
counterDir = counterDir + 1;
if ((counterDir >= offset) && (counterDir < (offset + perpage))){
DisplayApp(metadata.applications[index]);