Skip to content

Commit

Permalink
#23 Fix credit offers fetch bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ihorml committed Nov 9, 2022
1 parent 54c24a4 commit 5190c78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/core/service.market.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
creditoffer_id: credit_offer_id,
offset: offset,
limit: limit,
from: (from == 0 ? "&from_date=now-1y" : "&from_date=2015-10-10")
from: (from == 0 ? "now-1y" : "2015-10-10")
}}).then((response) => {
const unique_data = response.data.filter((v,i,a)=>a.findIndex(t=>(t.operation_id_num === v.operation_id_num))===i);

Expand Down

0 comments on commit 5190c78

Please sign in to comment.