Compare commits
No commits in common. "b2487c0511546f027337e50a3ce529590bb54a2f" and "1106e86b414ca65e4b48732bef7c58160f7a3535" have entirely different histories.
b2487c0511
...
1106e86b41
@ -305,10 +305,6 @@ export default class ExtendedRequest {
|
||||
return this.stolenData.filter((data) => data.isMarked);
|
||||
}
|
||||
|
||||
unmarkAllEntries() {
|
||||
this.stolenData.forEach((entry) => entry.unmark());
|
||||
}
|
||||
|
||||
getHost() {
|
||||
return new URL(this.url).host;
|
||||
}
|
||||
|
@ -191,7 +191,9 @@ export class RequestCluster extends SaferEmitter {
|
||||
|
||||
undoMark() {
|
||||
this.calculateRepresentativeStolenData();
|
||||
this.requests.forEach((request) => request.unmarkAllEntries());
|
||||
this.representativeStolenData.forEach((entry) => {
|
||||
entry.unmark();
|
||||
});
|
||||
}
|
||||
|
||||
getDataTypeDescription(noun = 'Twojej') {
|
||||
|
Loading…
Reference in New Issue
Block a user