refresh button fix
This commit is contained in:
parent
dec4cc479d
commit
3b7aa012cb
@ -1271,7 +1271,7 @@ class FreqtradeBot(LoggingMixin):
|
|||||||
'order_type': order_type,
|
'order_type': order_type,
|
||||||
'amount': amount,
|
'amount': amount,
|
||||||
'open_rate': open_rate,
|
'open_rate': open_rate,
|
||||||
'close_rate': trade.close_rate,
|
'close_rate': profit_rate,
|
||||||
'current_rate': current_rate,
|
'current_rate': current_rate,
|
||||||
'profit_amount': profit,
|
'profit_amount': profit,
|
||||||
'profit_ratio': profit_ratio,
|
'profit_ratio': profit_ratio,
|
||||||
|
@ -537,6 +537,7 @@ class Telegram(RPCHandler):
|
|||||||
:return: None
|
:return: None
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
|
if update.callback_query:show_order = '1' in update.callback_query.data
|
||||||
fiat_currency = self._config.get('fiat_display_currency', '')
|
fiat_currency = self._config.get('fiat_display_currency', '')
|
||||||
statlist, head, fiat_profit_sum = self._rpc._rpc_status_table(
|
statlist, head, fiat_profit_sum = self._rpc._rpc_status_table(
|
||||||
self._config['stake_currency'], fiat_currency, show_order)
|
self._config['stake_currency'], fiat_currency, show_order)
|
||||||
@ -563,11 +564,11 @@ class Telegram(RPCHandler):
|
|||||||
lines = message.split("\n")
|
lines = message.split("\n")
|
||||||
message = "\n".join(lines[:-1] + [lines[1]] + [lines[-1]])
|
message = "\n".join(lines[:-1] + [lines[1]] + [lines[-1]])
|
||||||
self._send_msg(f"<pre>{message}</pre>", parse_mode=ParseMode.HTML,
|
self._send_msg(f"<pre>{message}</pre>", parse_mode=ParseMode.HTML,
|
||||||
reload_able=True, callback_path="update_status_table",
|
reload_able=True, callback_path=f"update_status_table {bool(show_order)}",
|
||||||
query=update.callback_query)
|
query=update.callback_query)
|
||||||
except RPCException as e:
|
except RPCException as e:
|
||||||
self._send_msg(str(e), reload_able=True,
|
self._send_msg(str(e), reload_able=True,
|
||||||
callback_path="update_status_table",
|
callback_path=f"update_status_table {bool(show_order)}",
|
||||||
query=update.callback_query)
|
query=update.callback_query)
|
||||||
|
|
||||||
@authorized_only
|
@authorized_only
|
||||||
|
Loading…
Reference in New Issue
Block a user