mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 20:44:34 +00:00
don't use empty CW as placeholder in megalodon
This commit is contained in:
parent
0c7657e3a3
commit
25f26655bf
1 changed files with 2 additions and 2 deletions
|
@ -1119,7 +1119,7 @@ export default class Misskey implements MegalodonInterface {
|
||||||
}
|
}
|
||||||
if (options.sensitive) {
|
if (options.sensitive) {
|
||||||
params = Object.assign(params, {
|
params = Object.assign(params, {
|
||||||
cw: ''
|
cw: ' '
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (options.spoiler_text) {
|
if (options.spoiler_text) {
|
||||||
|
@ -1198,7 +1198,7 @@ export default class Misskey implements MegalodonInterface {
|
||||||
}
|
}
|
||||||
if (_options.sensitive) {
|
if (_options.sensitive) {
|
||||||
params = Object.assign(params, {
|
params = Object.assign(params, {
|
||||||
cw: ''
|
cw: ' '
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (_options.spoiler_text) {
|
if (_options.spoiler_text) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue