-
Type:
Bug
-
Resolution: Timed out
-
Priority:
Low
-
None
-
Affects Version/s: 3.13
-
Component/s: Email notifications
-
3.13
-
Severity 3 - Minor
-
Multiple email subscriptions will be sent from the first users locale.
In the IssueWebTableComponent we pass in an I18nBean gotten from the JiraAuthenticationContex.
This is its implementation:
public I18nBean getI18nBean()
{
I18nBean i18nBean = (I18nBean) getRequestCache().get(RequestCacheKeys.I18N_BEAN);
if (i18nBean == null)
{
i18nBean = new I18nBean(getUser());
getRequestCache().put(RequestCacheKeys.I18N_BEAN, i18nBean);
}
return i18nBean;
}
We need to generate a new I18nBean for each subscription.
- is incorporated by
-
JRASERVER-2182 Filter Subscription does not run as correct user
-
- Closed
-