Skip to content

Commit

Permalink
ident fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chaveiro committed Apr 12, 2024
1 parent 6bfa8ba commit 3f10959
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Modules/feed/feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,15 @@ var feed = {
async = true;
}

var non_async_result = false;
var non_async_result = false;
var ajaxAsyncXdr = $.ajax({
url: path+"feed/value.json",
data: data,
async: async,
url: path+"feed/value.json",
data: data,
async: async,
success: function(result) {
if (result===null || result==="") {
console.log("ERROR","feed.getvalue invalid response: "+result);
result = false;
result = false;
} else {
non_async_result = result;
}
Expand Down

0 comments on commit 3f10959

Please sign in to comment.