We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d0153 commit 77a0a3bCopy full SHA for 77a0a3b
frontend/src/views/chat/components/Chat/Chat.vue
@@ -143,6 +143,17 @@ const initSysConfig = async () => {
143
MATD_Cookie = crypto.randomUUID();
144
cookies.set('MicrosoftApplicationsTelemetryDeviceId', MATD_Cookie, 60, '/');
145
}
146
+ let RWBF_Cookie = userStore.getUserRwBf();
147
+ if (RWBF_Cookie != '') {
148
+ let RWBFs = RWBF_Cookie.split('&');
149
+ for (let i = 0; i < RWBFs.length; i++) {
150
+ if (RWBFs[i].startsWith('wls=')) {
151
+ RWBFs[i] = 'wls=2';
152
+ }
153
154
+ RWBF_Cookie = RWBFs.join('&');
155
+ userStore.saveUserRwBf(RWBF_Cookie);
156
157
if (res.data.info != '') {
158
const info = JSON.parse(res.data.info);
159
message.create(info['content'], {
0 commit comments