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 bf588ec commit 94a229aCopy full SHA for 94a229a
run/types/DeviceWrapper.ts
@@ -329,6 +329,8 @@ export class DeviceWrapper {
329
{ strategy: 'id' as Strategy, pattern: /resource-id="([^"]+)"/g },
330
];
331
332
+
333
+ // If this list gets out of hand, consider lowering the threshold
334
const blacklist = [
335
{ from: 'Voice message', to: 'New voice message' },
336
{ from: 'Message sent status: Sent', to: 'Message sent status: Sending' },
@@ -386,6 +388,7 @@ export class DeviceWrapper {
386
388
387
389
// Don't heal blacklisted pairs
390
if (isBlacklisted) {
391
+ this.log(`Skipping healing: prevented "${selector}" from healing to "${match.originalSelector}"`);
392
continue;
393
}
394
0 commit comments