summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2013-12-17 18:04:51 +0100
committerSean Leonard <meanderingcode@aetherislands.net>2014-02-04 17:33:49 -0800
commit536571f438a505bd4d83f60378250e97085fa140 (patch)
tree7f5831788932cd3e660f986304427495adfda0d0 /src
parente4053f06e741a9eaa833eeaba153058f748145fd (diff)
Forgot to refactor string name in real code.
Diffstat (limited to 'src')
-rw-r--r--src/se/leap/openvpn/LogWindow.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/se/leap/openvpn/LogWindow.java b/src/se/leap/openvpn/LogWindow.java
index 1fe50d6a..b87c4999 100644
--- a/src/se/leap/openvpn/LogWindow.java
+++ b/src/se/leap/openvpn/LogWindow.java
@@ -82,7 +82,7 @@ public class LogWindow extends ListActivity implements StateListener {
private void shareLog() {
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_TEXT, getLogStr());
- shareIntent.putExtra(Intent.EXTRA_SUBJECT, getString(R.string.ics_openvpn_log_file));
+ shareIntent.putExtra(Intent.EXTRA_SUBJECT, getString(R.string.bitmask_openvpn_log_file));
shareIntent.setType("text/plain");
startActivity(Intent.createChooser(shareIntent, "Send Logfile"));
}