summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/src/WebIntent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/src/WebIntent.cpp')
-rw-r--r--Source/WebKit/chromium/src/WebIntent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebKit/chromium/src/WebIntent.cpp b/Source/WebKit/chromium/src/WebIntent.cpp
index 55775ecfc..041c7f2e9 100644
--- a/Source/WebKit/chromium/src/WebIntent.cpp
+++ b/Source/WebKit/chromium/src/WebIntent.cpp
@@ -188,7 +188,7 @@ WebString WebIntent::extrasValue(const WebString& name) const
WTF::HashMap<String, String>::const_iterator val = m_private->extras().find(name);
if (val == m_private->extras().end())
return WebString();
- return val->second;
+ return val->value;
#else
return WebString();
#endif