mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-23 14:56:07 +08:00
修复任务日志二维码展示,pushplus使用https
This commit is contained in:
parent
73642ba11d
commit
42c71f4b8b
|
@ -689,7 +689,7 @@ function pushPlusNotify(text, desp) {
|
||||||
topic: `${PUSH_PLUS_USER}`,
|
topic: `${PUSH_PLUS_USER}`,
|
||||||
};
|
};
|
||||||
const options = {
|
const options = {
|
||||||
url: `http://www.pushplus.plus/send`,
|
url: `https://www.pushplus.plus/send`,
|
||||||
body: JSON.stringify(body),
|
body: JSON.stringify(body),
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': ' application/json',
|
'Content-Type': ' application/json',
|
||||||
|
|
|
@ -100,7 +100,9 @@ const CronLogModal = ({
|
||||||
onCancel={() => cancel()}
|
onCancel={() => cancel()}
|
||||||
>
|
>
|
||||||
{!loading && value && (
|
{!loading && value && (
|
||||||
<pre style={{ whiteSpace: 'break-spaces' }}>{value}</pre>
|
<pre style={{ whiteSpace: 'break-spaces', lineHeight: 17 }}>
|
||||||
|
{value}
|
||||||
|
</pre>
|
||||||
)}
|
)}
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user