Compare commits

..

No commits in common. "b2487c0511546f027337e50a3ce529590bb54a2f" and "1106e86b414ca65e4b48732bef7c58160f7a3535" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View File

@ -305,10 +305,6 @@ export default class ExtendedRequest {
return this.stolenData.filter((data) => data.isMarked); return this.stolenData.filter((data) => data.isMarked);
} }
unmarkAllEntries() {
this.stolenData.forEach((entry) => entry.unmark());
}
getHost() { getHost() {
return new URL(this.url).host; return new URL(this.url).host;
} }

View File

@ -191,7 +191,9 @@ export class RequestCluster extends SaferEmitter {
undoMark() { undoMark() {
this.calculateRepresentativeStolenData(); this.calculateRepresentativeStolenData();
this.requests.forEach((request) => request.unmarkAllEntries()); this.representativeStolenData.forEach((entry) => {
entry.unmark();
});
} }
getDataTypeDescription(noun = 'Twojej') { getDataTypeDescription(noun = 'Twojej') {