[shotwell/shotwell-0.30] Clear ACDSEE tag transformer
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [shotwell/shotwell-0.30] Clear ACDSEE tag transformer
- Date: Mon, 25 Feb 2019 09:06:30 +0000 (UTC)
commit ccc69debe5b4beb77a5bbaebc20c00258d8dabdd
Author: Jens Georg <mail jensge org>
Date: Fri Feb 22 21:29:04 2019 +0100
Clear ACDSEE tag transformer
The transformer was only created once, but the result variable wasn't
cleared between calls, thus piling up the tags from all images
Fixes #89
Fixes #75
src/photos/PhotoMetadata.vala | 2 ++
1 file changed, 2 insertions(+)
---
diff --git a/src/photos/PhotoMetadata.vala b/src/photos/PhotoMetadata.vala
index 06b49cab..288a362f 100644
--- a/src/photos/PhotoMetadata.vala
+++ b/src/photos/PhotoMetadata.vala
@@ -70,6 +70,8 @@ public class ACDSeeKeywordTransformer : KeywordTransformer {
}
public override Gee.List<string> transform (string input) throws Error {
+ this.stack.clear();
+ this.result.clear();
var ctx = new MarkupParseContext (this.parser, 0, this, null);
ctx.parse (input, input.length);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]