Browse Source

Set expiration date for newly added cookie to +2 years from now, instead

of +99 years.

This fixes the ambiguity that users could assume the date was in the
past, but in fact it's in the future.
Ex. now date is 5/28/17, +99 years = 5/28/16, +2 years = 5/28/19
adaptive-webui-19844
Chocobo1 8 years ago
parent
commit
1ac7d779a7
  1. 2
      src/gui/cookiesmodel.cpp

2
src/gui/cookiesmodel.cpp

@ -145,7 +145,7 @@ bool CookiesModel::insertRows(int row, int count, const QModelIndex &parent)
if ((row < 0) || (row > m_cookies.size())) return false; if ((row < 0) || (row > m_cookies.size())) return false;
QNetworkCookie newCookie; QNetworkCookie newCookie;
newCookie.setExpirationDate(QDateTime::currentDateTime().addYears(99)); newCookie.setExpirationDate(QDateTime::currentDateTime().addYears(2));
beginInsertRows(parent, row, row + count - 1); beginInsertRows(parent, row, row + count - 1);
while (count-- > 0) while (count-- > 0)

Loading…
Cancel
Save