Skip to content

Commit

Permalink
Bug fix store
Browse files Browse the repository at this point in the history
  • Loading branch information
konect-V committed Jun 11, 2024
1 parent 1dcac4c commit 73d2b1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/core/apps/store/source/apps/apps.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ char** find_apps_url_by_tag(char* tag){
cJSON* application = cJSON_GetArrayItem(applications, i);
cJSON* application_tags = cJSON_GetObjectItem(application, "tags");

for(int y = 0 ; y < cJSON_GetArraySize(applications); y++){
for(int y = 0 ; y < cJSON_GetArraySize(application_tags); y++){
cJSON* application_tag = cJSON_GetArrayItem(application_tags, y);
if(cJSON_IsString(application_tag) && (application_tag->valuestring != NULL)){
if(!strcmp(tag, application_tag->valuestring)){
Expand Down

0 comments on commit 73d2b1d

Please sign in to comment.