I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 17f06272 authored by privateer's avatar privateer
Browse files

- fixed wrong mail selection

parent c16ea7b0
No related branches found
No related tags found
No related merge requests found
......@@ -851,14 +851,16 @@ public class WebMail extends HttpServlet
/*
* folder view
*/
if( sessionObject.state == STATE_LIST ) {
if( sessionObject.state == STATE_LIST || sessionObject.state == STATE_SHOW) {
/*
* check if user wants to view a message
*/
String show = request.getParameter( SHOW );
if( show != null && show.length() > 0 ) {
try {
int id = Integer.parseInt( show );
if( id >= 0 && id < sessionObject.folder.getPageSize() ) {
String uidl = (String)sessionObject.folder.getElementAtPosXonCurrentPage( id );
if( uidl != null ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment