Changeset 32858 for main/trunk


Ignore:
Timestamp:
2019-03-05T14:37:03+13:00 (5 years ago)
Author:
ak19
Message:

Fix to bug introduced by oversight in recent commit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/OAIServer.java

    r32830 r32858  
    350350       
    351351        // besides "reset", the only other non-verb (non-OAI) requests allowed would be: (de)activate="collName"
    352         if(pairs.length == 1) {
     352        if(pairs != null && pairs.length == 1) {
    353353            String command = pairs[0];
    354354            int index = command.indexOf('=');
Note: See TracChangeset for help on using the changeset viewer.